/* Global Styles */
:root {
    --background-color: #000000;
    --text-color: #ffffff;
    --accent-color: #ffffff;
    --secondary-text: #a0a0a0;
    --button-text: #000000;
    --button-bg: #ffffff;
    --border-color: #333333;
    --overlay-bg: rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.5;
    font-weight: 400;
    overflow-x: hidden;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 4rem; 
    margin-bottom: 1rem;
    letter-spacing: -0.01em; 
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.005em; 
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: flex-end;
}

.nav-links a {
    font-size: 0.8rem; 
    text-transform: uppercase;
    letter-spacing: 0.5px; 
    font-weight: 500;
}

/* Buttons */
.cta-button, .secondary-button, .learn-more-button {
    display: inline-block;
    padding: 0.75rem 1.75rem; 
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem; 
    letter-spacing: 0.03em; 
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap; 
}

.cta-button {
    background-color: var(--button-bg);
    color: var(--button-text);
    border: none;
}

.cta-button:hover {
    opacity: 0.9;
}

.learn-more-button {
    background-color: rgba(70, 90, 120, 0.8);
    color: var(--button-text);
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.learn-more-button:hover {
    background-color: rgba(70, 90, 120, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.secondary-button {
    border: 1px solid var(--text-color);
    color: var(--text-color);
    background-color: transparent;
}

.secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-button, .learn-more-button {
        width: 100%;
    }
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12rem 2rem;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13, 16, 45, 0.9), rgba(10, 10, 10, 0.8));
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: 
        radial-gradient(circle at 50% 80%, rgba(111, 76, 255, 0.4), transparent 60%),
        radial-gradient(circle at 30% 30%, rgba(83, 138, 214, 0.4), transparent 40%);
    z-index: 0;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero h1 {
    position: relative;
    z-index: 2;
    max-width: 900px;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 auto;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    color: var(--secondary-text);
    font-size: 1.25rem;
    max-width: 700px;
    margin: -1rem 0 1.5rem;
    position: relative;
    z-index: 2;
    font-weight: 400;
    line-height: 1.6;
}

/* Floating elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    opacity: 0.7;
    animation: float 15s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 30%;
    animation-delay: 5s;
}

.floating-element:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 7s;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.7;
    }
}

/* Intro Section with background */
.intro {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0), rgba(13, 16, 45, 0.3), rgba(10, 10, 10, 0));
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(111, 76, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.intro p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* CTA Section with background */
.cta-section {
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    background: linear-gradient(135deg, rgba(13, 16, 45, 0.8), rgba(10, 10, 10, 0.9));
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(83, 138, 214, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(111, 76, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

/* Testimonials with background */
.testimonials {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    background-color: var(--background-color);
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0), rgba(13, 16, 45, 0.1), rgba(10, 10, 10, 0));
    z-index: -1;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 2rem;
    text-align: left;
    flex: 1 1 300px;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.testimonial-user {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--secondary-text);
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: "\201C";
    font-size: 2.5rem;
    font-family: serif;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
}

.testimonial-text::after {
    content: "\201D";
    font-size: 2.5rem;
    font-family: serif;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    bottom: -1.5rem;
    right: 0;
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 1 1 100%;
    }
}

/* Payment Info Notice */
.payment-info-notice {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: rgba(0, 100, 0, 0.1);
    border: 1px solid rgba(0, 150, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    animation: softPulse 3s infinite alternate;
}

.notice-icon {
    font-size: 2rem;
    color: rgba(0, 200, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-info-notice p {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
}

@keyframes softPulse {
    0% {
        box-shadow: 0 0 5px rgba(0, 150, 0, 0.1);
    }
    100% {
        box-shadow: 0 0 15px rgba(0, 150, 0, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    .nav-links a:not(.cta-button) {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feature, .tier {
        min-width: 100%;
    }
    
    .hero {
        padding: 8rem 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    header {
        padding: 1rem;
    }
    
    .logo a {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        height: 80vh;
    }
    
    .intro p {
        font-size: 1.2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
}

/* Success Message Styles */
.success-message {
    text-align: center;
    padding: 2rem 1rem;
}

.success-text {
    margin-top: 1.5rem;
}

.success-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.success-text p {
    color: var(--secondary-text);
    line-height: 1.6;
}

/* Loader Animation */
.loader {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top-color: var(--text-color);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Browser Feature Section */
.browser-feature {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0), rgba(13, 16, 45, 0.3), rgba(10, 10, 10, 0));
    position: relative;
}

.browser-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(83, 138, 214, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.browser-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.browser-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

.browser-image img {
    width: 100%;
    height: auto;
    display: block;
}

.browser-content {
    flex: 1;
    text-align: center;
}

.browser-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.browser-content p {
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .browser-container {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    
    .browser-content {
        text-align: left;
        padding-left: 2rem;
    }
}

/* Footer */
footer {
    padding: 2rem 5%;
    border-top: 1px solid var(--border-color);
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

.legal-info {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 0.75rem;
    line-height: 1.4;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.8rem;
    opacity: 0.7;
    color: var(--secondary-text);
}

.footer-links a:hover {
    color: var(--text-color);
    opacity: 1;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

/* FAQ Page */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 10rem 2rem 6rem;
}

.faq-item {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.faq-item p {
    color: var(--secondary-text);
}

/* Form Styles */
.auth-section {
    padding-top: 3rem;
}

.auth-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 1.5rem;
}

.form-container {
    max-width: 480px; 
    margin: 0 auto;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-text);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: transparent;
    color: var(--text-color);
    font-size: 1rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus {
    border-color: var(--text-color);
    outline: none;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.half {
    flex: 1;
}

.remember-me, .terms-agreement {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-text);
    font-size: 0.875rem;
}

.remember-me input, .terms-agreement input {
    margin-right: 0.5rem;
}

.form-footer {
    margin-top: 2rem;
    text-align: center;
    color: var(--secondary-text);
    font-size: 0.875rem;
}

.forgot-password {
    color: var(--text-color);
    margin-bottom: 1rem;
    display: inline-block;
    font-size: 0.875rem;
}

/* Subscription Options */
.subscription-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.subscription-option {
    background-color: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.subscription-option:hover {
    background-color: rgba(40, 40, 40, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.subscription-option.special {
    background-color: rgba(0, 80, 40, 0.2);
    border: 1px solid rgba(0, 200, 100, 0.4);
    position: relative;
    overflow: hidden;
}

.subscription-option.special:before {
    content: 'Популярный выбор';
    position: absolute;
    top: 10px;
    right: -35px;
    background: rgba(0, 180, 80, 0.9);
    color: white;
    padding: 5px 40px;
    font-size: 0.7rem;
    transform: rotate(45deg);
    font-weight: bold;
}

.subscription-option.special:hover {
    background-color: rgba(0, 100, 50, 0.3);
    border-color: rgba(0, 220, 120, 0.5);
}

.subscription-option input[type="radio"]:checked + label::after {
    content: '✓';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: var(--accent-color);
    font-weight: bold;
    background-color: rgba(0, 180, 80, 0.1);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-color);
}

.subscription-option input[type="radio"]:checked {
    border-color: var(--accent-color);
}

.subscription-option input[type="radio"]:checked + label {
    color: var(--accent-color);
}

.subscription-option input[type="radio"] {
    display: none;
}

.subscription-option label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 100%;
}

.subscription-option input[type="radio"]:checked + label .option-title {
    color: var(--accent-color);
}

.subscription-option input[type="radio"]:checked + label .option-price {
    color: white;
}

.option-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.option-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-text);
    margin-bottom: 0.25rem;
}

.option-description {
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

/* Club Page */
.club-hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
}

.club-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    padding: 8rem 2rem;
}

.feature {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--text-color);
}

.feature-icon {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.feature h3 {
    margin-bottom: 1rem;
}

.feature p {
    color: var(--secondary-text);
}

.membership-tiers {
    padding: 8rem 2rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.02);
}

.tier-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.tier {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tier:hover {
    transform: translateY(-5px);
    border-color: var(--text-color);
}

.tier-header {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.price {
    font-size: 2rem;
    font-weight: 700;
}

.price span {
    font-size: 1rem;
    opacity: 0.8;
}

.tier-features {
    padding: 2rem;
    text-align: left;
}

.tier-features p {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--secondary-text);
}

.tier-features p:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--text-color);
    font-weight: bold;
}

.tier .cta-button {
    margin: 0 2rem 2rem;
    width: calc(100% - 4rem);
}

/* Terms & Privacy Pages */
.legal-content {
    padding: 3rem 20%;
    margin: 2rem auto;
    max-width: 1000px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--secondary-text);
}

.legal-section {
    margin-bottom: 3rem;
    padding: 0 1.5rem;
}

.last-updated {
    font-style: italic;
    color: var(--secondary-text);
    margin-bottom: 2.5rem;
    text-align: center;
    padding-bottom: 1rem;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .legal-section {
        padding: 0;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.6rem;
    }
}

/* Return Stats Section */
.return-stats {
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(20, 20, 20, 1);
    position: relative;
    overflow: hidden;
}

.return-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 255, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 255, 0, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.stats-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.stats-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.stats-percent {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.stats-percent span:first-child {
    animation: glow 2s ease-in-out infinite alternate;
}

.stats-percent span:last-child {
    margin-left: 0.5rem;
    font-size: 5rem;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3), 0 0 10px rgba(255, 255, 255, 0.2);
    }
    to {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3), 0 0 30px rgba(0, 255, 0, 0.2);
    }
}

.stats-description {
    font-size: 1rem;
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto;
}
