 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2563eb;
    --blue-light: #3b82f6;
    --blue-dark: #1d4ed8;
    --blue-glow: rgba(37, 99, 235, 0.5);
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --white: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gray-900);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, var(--blue-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--blue-glow) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(37, 99, 235, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-badge {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-badge.badge-beta {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid #f59e0b;
    color: #f59e0b;
}

.status-badge.badge-beta .status-dot {
    background: #f59e0b;
}

.status-badge.badge-start {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.status-badge.badge-start .status-dot {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-section {
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 50%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: var(--gray-400);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-container {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.countdown-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.time-unit {
    text-align: center;
    position: relative;
}

.time-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 30px var(--blue-glow);
    cursor: default;
}

.time-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: var(--white);
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-400);
    text-align: center;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--blue-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.feature-description {
    color: var(--gray-400);
    line-height: 1.6;
    font-size: 16px;
}

.cta-section {
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.cta-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 24px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-description {
    font-size: 20px;
    color: var(--gray-400);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
}

.footer {
    padding: 60px 0;
    border-top: 1px solid rgba(71, 85, 105, 0.3);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-text {
    color: var(--gray-400);
    font-size: 14px;
}

.progress-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(37, 99, 235, 0.2);
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--blue-light));
    width: 0%;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {

    .hero-section {
        padding: 60px 0;
    }


    .time-number {
        font-size: 48px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .countdown-container {
        padding: 40px 20px;
    }

    
    .countdown-label {
        text-align: center;
    }

    .countdown-timer {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 100%;
    }

    .time-number {
        font-size: 35px;
    }

    .time-label {
        font-size: 14px;
    }

}

@media (max-width: 600px) {
     .footer-content {
        display: none;
    }  
}

@media (max-width: 400px) {
  .nav-content {
        flex-direction: column;
        gap: 20px;
    }


    .countdown-label {
        text-align: center;
        font-size: 17px;
    }

    .countdown-timer {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        max-width: 100%;
    }

    .time-number {
        font-size: 30px;
    }

    .time-label {
        font-size: 13px;
    } 

}


.floating-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.floating-orb:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-orb:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-orb:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.launch-button-div{
  display: flex;
  align-items: center;
  justify-content: center;
}

.launch-button {
    background: linear-gradient(135deg, var(--primary-blue), var(--blue-light));
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    margin-top: 60px;
}

.launch-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--blue-light), var(--primary-blue));
}

.launch-button:active {
    transform: translateY(0);
}

.launch-button::after {
    content: '→';
    font-size: 20px;
    transition: transform 0.3s ease;
}

.launch-button:hover::after {
    transform: translateX(4px);
}


.beta-notice {
  background: rgba(245, 158, 11, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 16px;
  padding: 32px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.beta-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f59e0b, transparent);
}

.beta-notice-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 20px;
}

.beta-notice-title {
    font-size: 20px;
    font-weight: 600;
    color: #f59e0b;
    text-align: center;
    margin-bottom: 16px;
}

.beta-notice-text {
    color: var(--gray-300);
    text-align: center;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 24px;
}

.beta-requirements {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.requirement-item {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-300);
    font-size: 14px;
    font-weight: 500;
}

.requirement-item::before {
    content: '✓';
    color: #f59e0b;
    font-weight: 700;
}

@media (max-width: 768px) {
    .beta-requirements {
        flex-direction: column;
        align-items: center;
    }
    
    .requirement-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}