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

:root {
    --primary: #3b82f6;
    --primary-dark: #60a5fa;
    --background: #0a0a0a;
    --foreground: #fafafa;
    --muted: #1e293b;
    --muted-foreground: #94a3b8;
    --border: #334155;
    --card: #171717;
    --card-foreground: #fafafa;
    --radius: 0.5rem;
}

@media (prefers-color-scheme: dark) {
    :root {
        --primary: #3b82f6;
        --primary-dark: #60a5fa;
        --background: #0a0a0a;
        --foreground: #fafafa;
        --muted: #1e293b;
        --muted-foreground: #94a3b8;
        --border: #334155;
        --card: #171717;
        --card-foreground: #fafafa;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    font-size: 1.125rem;
    line-height: 1.75;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(10, 10, 10, 0.9) 50%, 
        rgba(10, 10, 10, 1) 100%);
}

@media (prefers-color-scheme: dark) {
    .hero-overlay {
        background: linear-gradient(to bottom, 
            rgba(10, 10, 10, 0.95) 0%, 
            rgba(10, 10, 10, 0.9) 50%, 
            rgba(10, 10, 10, 1) 100%);
    }
}
.hero-section .hero-content .brand-icon img{
    width: 80px;
    height: 80px;
    border-radius: 10px;
}
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    background-color: rgba(59, 130, 246, 0.1);
    margin-bottom: 2rem;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--primary);
    margin-bottom: 2rem;
}

.hero-description {
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    background-color: rgba(23, 23, 23, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(51, 65, 85, 0.5);
}

@media (prefers-color-scheme: dark) {
    .feature-card {
        background-color: rgba(23, 23, 23, 0.5);
        border-color: rgba(51, 65, 85, 0.5);
    }
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background-color: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--muted-foreground);
    font-size: 1rem;
}

/* Countdown Timer */
.countdown-container {
    margin-bottom: 3rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .countdown {
        gap: 1.5rem;
    }
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    min-width: 60px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .countdown-number {
        padding: 1rem 1.5rem;
        min-width: 80px;
    }
}

.countdown-number span {
    font-size: 2rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
    .countdown-number span {
        font-size: 2.5rem;
    }
}

.countdown-label {
    color: var(--muted-foreground);
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .countdown-label {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-section {
    width: 100%;
    padding: 4rem 1rem;
}

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

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

.section-header p {
    color: var(--muted-foreground);
    font-size: 1rem;
}

.form-container {
    max-width: 42rem;
    margin: 0 auto;
}

.card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

@media (min-width: 768px) {
    .card {
        padding: 2rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--background);
    color: var(--foreground);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn:hover {
    background-color: var(--primary-dark);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Newsletter Section */
.newsletter-section {
    width: 100%;
    padding: 4rem 1rem;
    background-color: rgba(30, 41, 59, 0.3);
}

@media (prefers-color-scheme: dark) {
    .newsletter-section {
        background-color: rgba(30, 41, 59, 0.3);
    }
}

.newsletter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 9999px;
    background-color: rgba(59, 130, 246, 0.1);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 28rem;
    margin: 0 auto;
}
.iframeC {
    overflow: hidden;
}
@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
    
    .newsletter-form input {
        flex: 1;
    }
    
    .newsletter-form .btn {
        width: auto;
    }
}

/* Footer */
footer {
    padding: 2rem 1rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--muted-foreground);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--muted-foreground);
    transition: color 0.2s;
}

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

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.3s;
    z-index: 1000;
    max-width: 90%;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success {
    color: #10b981;
}

/* Icons (using SVG) */
.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.icon-lg {
    width: 40px;
    height: 40px;
}
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}
