:root {
    --primary: #FF5F1F;
    --primary-glow: rgba(255, 95, 31, 0.4);
    --secondary: #1A1A2E;
    --accent: #4ECCA3;
    --text-main: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--secondary);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* Background Effects */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(26, 26, 46, 0.1) 0%, rgba(10, 10, 20, 1) 100%);
    z-index: -2;
}

.blob-gradient {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    animation: move-blob 20s infinite alternate;
}

@keyframes move-blob {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40%, 40%); }
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

/* Hero Section */
.hero {
    padding-top: 4rem;
    margin-bottom: 4rem;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #FF8C42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
}

.logo-text span {
    color: var(--primary);
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.accent-text {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
}

/* Countdown Section */
.countdown-wrapper {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

.countdown-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 3rem;
    align-items: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    min-width: 80px;
}

.countdown-item span {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.countdown-item label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
}

.countdown-divider {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.launch-date {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    padding: 2.5rem 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Contact Section */
.contact-section {
    margin-bottom: 5rem;
}

.contact-section h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.contact-card .icon {
    font-size: 1.2rem;
}

.contact-card .number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Footer */
.main-footer {
    padding: 3rem 1rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-footer p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.footer-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(78, 204, 163, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(78, 204, 163, 0); }
    100% { box-shadow: 0 0 0 0 rgba(78, 204, 163, 0); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .countdown-card {
        padding: 1.5rem;
        gap: 0.8rem;
    }
    .countdown-item {
        min-width: 60px;
    }
    .countdown-item span {
        font-size: 2rem;
    }
    .countdown-divider {
        font-size: 1.5rem;
    }
}
