:root {
    --bg-color: #020617;
    --surface-color: #0f172a;
    --primary-color: #38bdf8;
    --secondary-color: #0ea5e9;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent-gradient: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    --font-main: 'Outfit', 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 5s ease infinite alternate;
    background-size: 200% 200%;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.ph-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    opacity: 0;
}

.ph-badge a {
    transition: transform 0.3s ease;
    display: block;
    line-height: 0;
}

.ph-badge a:hover {
    transform: scale(1.05);
}

.ph-badge img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 11, 29, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: white;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        /* Adjust based on navbar height */
        left: 0;
        width: 100%;
        background: rgba(5, 11, 29, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transform: translateY(-150%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .btn {
        display: none;
        /* Optional: hide header CTA on mobile if it clutters */
    }

    nav .btn-primary {
        display: none;
        /* Hide download button in nav on mobile */
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-color);
    box-shadow: 0 10px 20px rgba(7, 236, 248, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(7, 236, 248, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-outline:hover {
    background: var(--glass-bg);
}

.btn-bmc {
    background: #f59e0b;
    color: #fff !important;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-bmc:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(7, 236, 248, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-btns {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}


/* Features */
.features {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(7, 236, 248, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Showcase */
.showcase {
    padding: 8rem 0;
    background: #060e25;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    justify-items: center;
    /* Center images if they don't fill the column */
}

.showcase-item {
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    max-width: 540px;
    /* Match optimized screenshot width */
    width: 100%;
}

.showcase-item img {
    width: 100%;
    transition: transform 0.6s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-single {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.showcase-single img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.showcase-single:hover img {
    transform: scale(1.02);
}

.showcase-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(5, 11, 29, 0.9));
}


/* Reviews */
.reviews {
    padding: 8rem 0;
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.review-stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.review-text {
    flex-grow: 1;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.author-info h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.supporter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 0.75rem;
    align-self: flex-start;
}

.pricing-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pricing-tag.free {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.pricing-tag.iap {
    color: var(--primary-color);
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.2);
}

.pricing-tag.beta-tag {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}

.unsigned-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-secondary);
    text-align: left;
    margin-top: 0.5rem;
}

.unsigned-notice i {
    color: #f59e0b;
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Support CTA */
.support-cta {
    padding: 8rem 0;
    text-align: center;
}

.support-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--surface-color);
    padding: 4rem;
    border-radius: 2rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(56, 189, 248, 0.1);
}

.btn-large {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Footer */
footer {
    padding: 5rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: #4a5568;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero {
        padding: 7rem 0 3rem;
    }



    .section-header h2 {
        font-size: 2.25rem;
    }

    .pricing-card {
        padding: 3rem 1.5rem;
    }

    .price {
        font-size: 3rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .footer-links a {
        padding: 0.5rem 0;
    }

    .support-card {
        padding: 2rem 1.5rem;
    }

    .btn-large {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}

.coming-soon {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(7, 236, 248, 0.1);
    border: 1px solid rgba(7, 236, 248, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
    backdrop-filter: blur(5px);
}

.hero .coming-soon {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    margin-bottom: 2rem;
}


.feature-card {
    position: relative;
}


/* Download Page Styles */
.download-hero {
    padding: 10rem 0 4rem;
    text-align: center;
}

.download-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Download Selector Card */
.dl-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.dl-hero-stats .stats-badge {
    margin-top: 0;
    /* Remove top margin when in container */
    animation: none;
    /* Already handled by container */
    opacity: 1;
}

.dl-hero-stats .ph-badge {
    display: flex;
    align-items: center;
}

.downloads {
    padding-bottom: 8rem;
}

/* Download Selector Card */
.dl-selector-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 3rem;
    text-align: center;
}

.dl-selector-card h2 {
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Platform Tabs */
.dl-platform-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.dl-tab {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
}

.dl-tab i {
    font-size: 1.3rem;
}

.dl-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.dl-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    box-shadow: 0 15px 30px rgba(7, 236, 248, 0.3);
}

.tab-badge {
    font-size: 0.7rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 800;
    margin-left: 0.5rem;
}

/* Download Panels */
.dl-panel {
    display: none;
    animation: panelFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dl-panel.active {
    display: block;
    max-width: 600px;
    margin: 0 auto;
}

@keyframes panelFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dl-panel-header {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Pricing badges in panels */
.dl-pricing {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dl-pricing.free {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.dl-pricing.iap {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

/* Form rows */
.dl-form-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem 2.5rem;
    border-radius: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dl-form-row label {
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 140px;
    text-align: left;
    font-size: 1.15rem;
}

.dl-form-row select {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 1.25rem;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
}

.dl-form-row select:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.05);
}

.dl-form-row select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(7, 236, 248, 0.1);
}

.dl-form-row select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dl-form-row select option {
    background: #0f172a;
    color: var(--text-primary);
}

/* Download button */
.dl-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    width: 100%;
    padding: 1.5rem;
    background: var(--primary-color);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 1.5rem;
    margin-top: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 30px rgba(7, 236, 248, 0.2);
}

.dl-download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(7, 236, 248, 0.35);
    background: #fff;
    /* Slight flash of white on hover for premium feel */
}

.dl-download-btn i {
    font-size: 1.5rem;
}

/* Old versions link */
.dl-old-versions {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    justify-content: center;
}

.dl-old-versions:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Support row */
.dl-support-row {
    margin-top: 5rem;
    padding-top: 3.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Unsigned Notice */
.unsigned-notice {
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 2rem;
    display: flex;
    gap: 1.75rem;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.unsigned-notice i {
    color: #f59e0b;
    font-size: 1.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.btn-bmc {
    background: #f59e0b !important;
    padding: 1.5rem 4rem !important;
    font-size: 1.25rem !important;
    border-radius: 100px !important;
}

/* Responsive */
@media (max-width: 600px) {
    .dl-selector-card {
        padding: 3rem 1.5rem;
        border-radius: 2rem;
    }

    .dl-selector-card h2 {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .dl-platform-tabs {
        gap: 0.5rem;
        margin-bottom: 3rem;
    }

    .dl-tab {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .dl-tab i {
        font-size: 1.1rem;
    }

    .dl-tab span:not(.tab-badge) {
        display: none;
        /* Keep icons only for main text on very small screens */
    }

    .dl-panel.active {
        max-width: 100%;
    }

    .dl-form-row {
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem 1.5rem;
        gap: 1rem;
        border-radius: 1.25rem;
    }

    .dl-form-row label {
        min-width: auto;
        font-size: 1rem;
        margin-bottom: 0.25rem;
        text-align: left;
    }

    .dl-form-row select {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        background-position: right 1rem center;
    }

    .dl-download-btn {
        padding: 1.2rem;
        font-size: 1.15rem;
        border-radius: 1rem;
        margin-top: 1.25rem;
    }

    .dl-download-btn i {
        font-size: 1.35rem;
    }

    .btn-bmc {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        width: auto !important;
        display: inline-flex !important;
    }

    .unsigned-notice {
        padding: 1.25rem;
        font-size: 0.9rem;
        gap: 0.75rem;
        border-radius: 1rem;
    }

    .unsigned-notice i {
        font-size: 1.2rem;
    }
}

.stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    background: rgba(7, 236, 248, 0.05);
    border: 1px solid rgba(7, 236, 248, 0.2);
    border-radius: 100px;
    font-weight: 600;
    color: var(--primary-color);
    backdrop-filter: blur(10px);
    margin-top: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.stats-badge:hover {
    background: rgba(7, 236, 248, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(7, 236, 248, 0.15);
}

.stats-badge i {
    font-size: 1.1rem;
}

.stats-badge .count {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.stats-badge .label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 992px) {
    .dl-selector-card {
        padding: 4rem 2rem;
        margin: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .stats-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .stats-badge .count {
        font-size: 1.1rem;
    }
}

/* Supporters Section */
.supporters-section {
    padding: 6rem 0;
    position: relative;
}

.supporters-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 2.5rem;
    padding: 4rem;
    text-align: center;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.supporter-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.supporter-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-color);
}

.supporter-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.supporter-amount {
    font-size: 0.9rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    margin: 0.25rem 0;
}

.supporter-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.supporter-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.bmc-amount-badge {
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.bmc-amount-badge:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.15);
}

@media (max-width: 768px) {
    .supporters-container {
        padding: 2rem 1.5rem;
    }

    .supporters-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}