/* Root Variables */
:root {
    --primary: #c026d3;
    --primary-light: #e879f9;
    --primary-dark: #86198f;
    --secondary: #a855f7;
    --accent: #f0abfc;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(20, 20, 30, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --gradient-primary: linear-gradient(135deg, #c026d3 0%, #a855f7 50%, #7c3aed 100%);
    --gradient-glow: linear-gradient(135deg, rgba(192, 38, 211, 0.4) 0%, rgba(168, 85, 247, 0.4) 100%);
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Particles Background */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary-light);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-200px) translateX(-30px);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-100px) translateX(-50px);
        opacity: 0.6;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(192, 38, 211, 0.2);
    z-index: 1000;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-logo-img {
    width: 40px;
    height: auto;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 6rem 2rem 2rem;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(192, 38, 211, 0.15) 0%, rgba(168, 85, 247, 0.05) 40%, transparent 70%);
    pointer-events: none;
    animation: pulse 8s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.7;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-icon {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(192, 38, 211, 0.4));
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.hero-logo-main {
    width: clamp(350px, 60vw, 700px);
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 50px rgba(192, 38, 211, 0.6));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.hero h1 {
    display: none;
    background: var(--bg-dark);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00ffff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    5% { clip: rect(70px, 9999px, 31px, 0); }
    10% { clip: rect(29px, 9999px, 24px, 0); }
    15% { clip: rect(80px, 9999px, 95px, 0); }
    20% { clip: rect(24px, 9999px, 21px, 0); }
    25% { clip: rect(30px, 9999px, 98px, 0); }
    30% { clip: rect(39px, 9999px, 71px, 0); }
    35% { clip: rect(14px, 9999px, 52px, 0); }
    40% { clip: rect(60px, 9999px, 99px, 0); }
    45% { clip: rect(67px, 9999px, 42px, 0); }
    50% { clip: rect(99px, 9999px, 15px, 0); }
    55% { clip: rect(35px, 9999px, 79px, 0); }
    60% { clip: rect(54px, 9999px, 21px, 0); }
    65% { clip: rect(43px, 9999px, 96px, 0); }
    70% { clip: rect(23px, 9999px, 68px, 0); }
    75% { clip: rect(85px, 9999px, 45px, 0); }
    80% { clip: rect(19px, 9999px, 38px, 0); }
    85% { clip: rect(91px, 9999px, 12px, 0); }
    90% { clip: rect(48px, 9999px, 77px, 0); }
    95% { clip: rect(62px, 9999px, 33px, 0); }
    100% { clip: rect(26px, 9999px, 89px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    5% { clip: rect(21px, 9999px, 74px, 0); }
    10% { clip: rect(88px, 9999px, 33px, 0); }
    15% { clip: rect(42px, 9999px, 91px, 0); }
    20% { clip: rect(15px, 9999px, 58px, 0); }
    25% { clip: rect(73px, 9999px, 26px, 0); }
    30% { clip: rect(51px, 9999px, 82px, 0); }
    35% { clip: rect(37px, 9999px, 19px, 0); }
    40% { clip: rect(94px, 9999px, 67px, 0); }
    45% { clip: rect(28px, 9999px, 44px, 0); }
    50% { clip: rect(77px, 9999px, 11px, 0); }
    55% { clip: rect(46px, 9999px, 86px, 0); }
    60% { clip: rect(12px, 9999px, 59px, 0); }
    65% { clip: rect(83px, 9999px, 31px, 0); }
    70% { clip: rect(55px, 9999px, 78px, 0); }
    75% { clip: rect(22px, 9999px, 97px, 0); }
    80% { clip: rect(69px, 9999px, 14px, 0); }
    85% { clip: rect(34px, 9999px, 63px, 0); }
    90% { clip: rect(81px, 9999px, 47px, 0); }
    95% { clip: rect(17px, 9999px, 92px, 0); }
    100% { clip: rect(56px, 9999px, 25px, 0); }
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Server IP Display */
.server-ip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(192, 38, 211, 0.3);
    border-radius: 50px;
    padding: 0.4rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(192, 38, 211, 0.2);
}

.ip-label {
    font-size: 0.6rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0.9rem;
    background: rgba(192, 38, 211, 0.2);
    border-radius: 50px;
}

.ip-address {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0.5rem 0.75rem;
    letter-spacing: 0.01em;
}

.copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    color: white;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.copy-btn .copy-text {
    display: inline;
}

.copy-btn:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    background: var(--bg-card);
    border: 1px solid rgba(192, 38, 211, 0.3);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn:hover {
    border-color: var(--primary);
    background: rgba(192, 38, 211, 0.15);
    transform: scale(1.02);
}

.btn-primary,
.btn-secondary {
    background: var(--bg-card);
    border: 1px solid rgba(192, 38, 211, 0.3);
    color: var(--text-primary);
    box-shadow: none;
}

.btn-primary:hover,
.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(192, 38, 211, 0.15);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(192, 38, 211, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    padding: 6rem 5%;
    position: relative;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.title-decoration {
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(192, 38, 211, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(192, 38, 211, 0.4);
    box-shadow: 0 20px 40px rgba(192, 38, 211, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-glow);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(192, 38, 211, 0.4);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 4rem 5%;
    background: linear-gradient(180deg, transparent, rgba(192, 38, 211, 0.05), transparent);
}

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

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-light);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* Updates Section */
.updates-section {
    padding: 6rem 5%;
    position: relative;
}

.updates-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.update-card {
    background: var(--bg-card);
    border: 1px solid rgba(192, 38, 211, 0.15);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.update-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.update-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 38, 211, 0.4);
    box-shadow: 0 15px 30px rgba(192, 38, 211, 0.15);
}

.update-card:hover::before {
    transform: scaleX(1);
}

.update-date {
    font-size: 0.8rem;
    color: var(--primary-light);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.update-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.update-content {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.updates-empty {
    text-align: center;
    color: var(--text-secondary);
    padding: 3rem;
    grid-column: 1 / -1;
}

/* Join Section */
.join-section {
    padding: 6rem 5%;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(192, 38, 211, 0.08));
    position: relative;
}

.join-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.join-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* Bottom server IP - larger version */
.server-ip-bottom {
    margin-bottom: 3rem;
    padding: 0.5rem;
    box-shadow: 0 0 40px rgba(192, 38, 211, 0.3);
}

.server-ip-bottom .ip-label {
    font-size: 0.7rem;
    padding: 0.6rem 1.1rem;
}

.server-ip-bottom .ip-address {
    font-size: 1.2rem;
    padding: 0.6rem 1rem;
}

.server-ip-bottom .copy-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
}

.server-ip-bottom .copy-btn svg {
    width: 16px;
    height: 16px;
}

.join-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(192, 38, 211, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
}

.step-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    padding: 3rem 5%;
    border-top: 1px solid rgba(192, 38, 211, 0.15);
    background: var(--bg-darker);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-logo img {
    width: 40px;
    height: auto;
}

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

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

.footer-links a:hover {
    color: var(--primary-light);
}

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

/* Toast Notification */
.copied-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(192, 38, 211, 0.4);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2000;
}

.copied-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.copied-toast svg {
    color: white;
}

.copied-toast span {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .nav-logo {
        gap: 0.5rem;
    }

    .nav-logo-img {
        width: 32px;
    }

    .nav-logo span {
        font-size: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .nav-links a::after {
        display: none;
    }

    .hero {
        padding: 5rem 1rem 2rem;
    }

    .hero-logo-main {
        width: clamp(250px, 80vw, 400px);
        margin-bottom: 1.5rem;
    }

    .tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .server-ip {
        flex-wrap: wrap;
        border-radius: 10px;
        overflow: hidden;
    }

    .ip-label {
        font-size: 0.6rem;
        padding: 0.6rem 0.75rem;
    }

    .ip-address {
        font-size: 0.95rem;
        padding: 0.6rem 0.75rem;
    }

    .copy-btn {
        padding: 0.6rem 0.75rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .title-decoration {
        width: 30px;
    }

    .features {
        padding: 4rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .stats-section {
        padding: 3rem 1rem;
    }

    .stats-container {
        gap: 1.5rem;
    }

    .stat-item {
        flex: 1 1 40%;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .join-section {
        padding: 4rem 1rem;
    }

    .join-content h2 {
        font-size: 1.75rem;
    }

    .server-ip-bottom {
        margin-bottom: 2rem;
    }

    .server-ip-bottom .ip-address {
        font-size: 1rem;
    }

    .join-steps {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }

    .step {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1rem;
        justify-content: center;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.6rem 0.75rem;
    }

    .nav-logo {
        gap: 0.4rem;
    }

    .nav-logo-img {
        width: 28px;
    }

    .nav-logo span {
        display: none;
    }

    .nav-links {
        gap: 0.6rem;
    }

    .nav-links a {
        font-size: 0.7rem;
        padding: 0.4rem 0.5rem;
        background: rgba(192, 38, 211, 0.1);
        border-radius: 6px;
    }

    .hero-logo-main {
        width: clamp(220px, 85vw, 320px);
    }

    .tagline {
        font-size: 0.9rem;
    }

    .server-ip {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .ip-label {
        display: none;
    }

    .ip-address {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }

    .copy-btn {
        padding: 0.5rem 0.6rem;
    }

    .copy-btn .copy-text {
        display: none;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}
