/* Reset and Base Styles */
html {
  scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Global Background */
.global-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 0%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 0%),
        radial-gradient(ellipse at 40% 80%, rgba(120, 119, 198, 0.08) 0%, transparent 0%),
        url('assets/space-background.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: -2;
}

/* Add starry effect */
.global-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.8), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    opacity: 0.4;
    animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
    from { opacity: 0.3; }
    to { opacity: 0.6; }
}

#coming-soon {
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 0%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 0%),
        radial-gradient(ellipse at 40% 80%, rgba(120, 119, 198, 0.08) 0%, transparent 0%),
        url('assets/coming-soon.png');
}

#coming-soon::before {
   content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.8), transparent);
    background-repeat: repeat;
    background-size: 0px 0px;
    opacity: 0.0;
    animation: twinkle 3s ease-in-out infinite alternate;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    position: relative;
    padding: 30px 0;
    z-index: 10;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

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

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 16px;
}

.btn-nav {
    padding: 12px 28px;
    border-radius: 15px;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.btn-docs {
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    color: #ffffff;
    border: none;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 -2px 4px rgba(255, 255, 255, 0.05),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-docs:hover {
    background: linear-gradient(135deg, #404040 0%, #303030 100%);
    transform: translateY(-1px);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.4),
        inset 0 -2px 4px rgba(255, 255, 255, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-launch {
    background: radial-gradient(ellipse at center, #ffffff 20%, #cecece 60%, #959595 100%);
    color: #000000;
    border: none;
    box-shadow: 
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-launch:hover {
    background: radial-gradient(ellipse at center, #ffffff 20%, #cecece 60%, #959595 100%);
    transform: translateY(-1px);
    box-shadow: 
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Main Content */
.main {
    padding: 20px 0 100px;
    padding-bottom: 0px !important;
}

/* Hero Section */
.hero-section {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%),
        url('assets/1.png');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.21);
    border-radius: 24px;
    padding: 80px 60px;
    position: relative;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Text */
.hero-text {
    margin-bottom: 60px;
}

.hero-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-cta {
    padding: 16px 32px;
    border-radius: 15px;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 160px;
    position: relative;
}

.btn-primary {
    background: radial-gradient(ellipse at center, #ffffff 20%, #cecece 60%, #959595 100%);
    color: #000000;
    border: none;
    box-shadow: 
        inset 0 -2px 6px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: radial-gradient(ellipse at center, #ffffff 20%, #cecece 60%, #959595 100%);
    transform: translateY(-2px);
    box-shadow: 
        inset 0 -2px 6px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    color: #ffffff;
    border: none;
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.3),
        inset 0 -2px 6px rgba(255, 255, 255, 0.05),
        0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #404040 0%, #303030 100%);
    transform: translateY(-2px);
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.4),
        inset 0 -2px 6px rgba(255, 255, 255, 0.08),
        0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Description */
.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 20px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-img {
        height: 32px;
        width: auto;
    }
    
    .nav-buttons {
        gap: 12px;
    }
    
    .btn-nav {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-section {
        padding: 60px 30px;
        border-radius: 16px;
    }
    
    .hero-title {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .btn-cta {
        padding: 14px 28px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-section {
        padding: 40px 20px;
    }
}

/* Section 2: Two Feature Boxes Side by Side */
.sections-row {
    display: flex;
    gap: 40px;
    margin: 20px 0;
}

.usai-section {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%),
        url('assets/2.png');
    background-size: cover;
    background-position: center;
}

.hedge-section {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%),
        url('assets/3.png');
    background-size: cover;
    background-position: center;
}

.feature-section {
    border: 1px solid rgba(255, 255, 255, 0.21);
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    backdrop-filter: blur(20px);
    overflow: hidden;
    flex: 1;
    text-align: center;
}

.feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.feature-section > * {
    position: relative;
    z-index: 2;
}

.feature-icon {
    margin-bottom: 30px;
}

.icon-container {
    width: 80px;
    height: 80px;
    background: rgba(21, 21, 21, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.icon-img {
    width: 50px;
    height: 50px;
}

.feature-title {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 30px;
}

.feature-keywords {
    font-size: 20px;
    color: rgba(255, 255, 255, 1);
    font-weight:100;
}

/* Section 3: Everything in sync */
.sync-section {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%),
        url('assets/section-background.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.21);
    border-radius: 24px;
    padding: 20px 60px;
    margin: 10px 0;
    position: relative;
    backdrop-filter: blur(20px);
    overflow: hidden;
    text-align: center;
}

.sync-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.sync-title {
    position: relative;
    z-index: 2;
    font-size: 26px;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
}

/* Section 4: Five Individual Service Boxes */
.services-row {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.service-section {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%),
        url('assets/section-background.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.21);
    border-radius: 24px;
    padding: 50px 20px;
    position: relative;
    backdrop-filter: blur(20px);
    overflow: hidden;
    flex: 1;
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.service-name {
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-keywords {
        font-size: 15px;
    }

    .sections-row, .services-row {
        flex-direction: column;
        gap: 30px;
        margin: 40px 0;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .sync-section {
        padding: 30px 40px;
        margin: 40px 0;
    }
    
    .sync-title {
        font-size: 28px;
    }
    
    .service-name {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .services-row {
        flex-wrap: wrap;
    }
    
    .service-section {
        flex: 0 0 calc(50% - 10px);
    }
}


/* Connected Protocols Header */
.protocols-header-section {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%),
        url('assets/section-background.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.21);
    border-radius: 24px;
    padding: 20px 60px;
    margin: 20px 0;
    position: relative;
    backdrop-filter: blur(20px);
    overflow: hidden;
    text-align: center;
}

.protocols-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.protocols-title {
    position: relative;
    z-index: 2;
    font-size: 26px;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
}

/* Connected Protocols Grid Rows */
.protocols-row {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.protocols-row:first-of-type {
    margin-top: 0;
}

.protocol-section {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.2) 100%),
        url('assets/section-background.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.21);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(20px);
    overflow: hidden;
    flex: 1;
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.protocol-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.protocol-logo {
    position: relative;
    z-index: 2;
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    filter: brightness(0.8) contrast(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .protocols-header-section {
        padding: 30px 40px;
        margin: 40px 0;
    }
    
    .protocols-title {
        font-size: 28px;
    }
    
    .protocols-row {
        gap: 15px;
        margin: 15px 0;
    }
    
    .protocol-section {
        padding: 30px;
        flex: 0 0 calc(50% - 7.5px);
    }
    
    .protocol-logo {
        max-width: 60px;
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .protocols-row {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .protocol-section {
        padding: 25px;
        flex: 0 0 calc(50% - 5px);
    }
    
    .protocol-logo {
        max-width: 50px;
        max-height: 50px;
    }
}




/* CTA Section */
.cta-section {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%),
        url('assets/section-background.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px;
    margin: 60px 0;
    position: relative;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.main-cta-row {
    margin-bottom: 30px;
}

.btn-wide {
    min-width: 700px;
    font-size: 20px;
    padding: 18px 40px;
}

.cta-buttons-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-buttons-row .btn-cta {
    flex: 1;
}

/* Footer */
.footer {
    background: #000000;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Left Column: Social Links */
.footer-social {
    display: flex;
    align-items: flex-start;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* CTA Section - No Box */
.cta-no-box {
    text-align: center;
    margin: 60px 0;
}

.btn-no-wrap {
    white-space: nowrap;
}

/* Social Links - Wide and Short */
.social-link {
    width: 80px;
    height: 40px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-icon-img {
    width: 20px;
    filter: brightness(0.8);
}

.social-link:hover {
    background: rgba(60, 60, 60, 0.9);
    transform: translateY(-2px);
}

/* Center Column: Back to Top & Contact */
.footer-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.back-to-top {
    margin-bottom: 10px;
}

.back-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.2s ease;
}

.back-text:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    margin: 10px 0;
}

.contact-section {
    text-align: center;
}

.contact-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.contact-email {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.contact-email:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Right Column: Links */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
}

/* Copyright */
.footer-copyright {
    text-align: left;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .btn-secondary {
    width: 100%;
    min-width: 100%;
}
    .cta-section {
        padding: 40px 30px;
        margin: 40px 0;
    }
    
    .btn-wide {
        min-width: 100%;
        font-size: 18px;
        padding: 16px 30px;
    }
    
    .cta-buttons-row {
        flex-direction: column;
        max-width: 100%;
    }
    
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-links {
        flex-direction: row;
        gap: 15px;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn-wide {
        font-size: 16px;
        padding: 14px 25px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

.testnet-section {
    text-align: center;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    /* Add these lines for vertical centering */
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testnet-title {
    font-size: 64px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.testnet-subtitle {
    font-size: 64px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.email-form {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 300px;
    padding: 20px 24px;
    font-size: 18px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    outline: none;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.email-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.submit-btn {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 160px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testnet-title,
    .testnet-subtitle {
        font-size: 42px;
    }
    
    .email-form {
        flex-direction: column;
        gap: 20px;
    }
    
    .email-input {
        min-width: 100%;
        width: 100%;
    }
    
    .submit-btn {
        width: 100%;
    }
}
