/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #818CF8;
    --secondary: #10B981;
    --secondary-dark: #059669;
    --text-dark: #111827;
    --text-light: #4B5563;
    --text-lighter: #9CA3AF;
    --background: #FFFFFF;
    --background-alt: #F9FAFB;
    --border: #E5E7EB;
    --border-dark: #D1D5DB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-secondary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --primary: #818CF8;
    --primary-dark: #6366F1;
    --primary-light: #A5B4FC;
    --secondary: #34D399;
    --secondary-dark: #10B981;
    --text-dark: #F9FAFB;
    --text-light: #E5E7EB;
    --text-lighter: #9CA3AF;
    --background: #111827;
    --background-alt: #1F2937;
    --border: #374151;
    --border-dark: #4B5563;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--background);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7ef 100%);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.5rem;
    letter-spacing: -0.2px;
}

p {
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.2px;
}

.highlight {
    color: var(--primary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 5;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader p {
    margin-top: var(--spacing-md);
    font-weight: 500;
}

.logo-svg {
    width: 60px;
    height: 60px;
}

.logo-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: draw 2s infinite alternate;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* ===== LAUNCH CONTAINER ===== */
.launch-container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-2xl) var(--spacing-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-xl);
}

.logo-svg {
    width: 32px;
    height: 32px;
    margin-right: var(--spacing-sm);
}

/* ===== LAUNCH CONTENT ===== */
.launch-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-2xl);
}

.launch-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.launch-description {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto var(--spacing-2xl);
    text-align: center;
}

/* ===== COUNTDOWN ===== */
.countdown-wrapper {
    margin-bottom: var(--spacing-2xl);
    width: 100%;
}

.countdown {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    justify-content: center;
    flex-wrap: nowrap; /* Prevent wrapping on mobile */
    width: 100%;
}

.countdown-item {
    background-color: var(--background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-lg);
    min-width: 90px;
    animation: pulse 2s infinite alternate;
    flex: 1; /* Equal width boxes */
    max-width: 120px; /* Prevent too wide boxes */
}

@keyframes pulse {
    from {
        box-shadow: var(--shadow-md);
        transform: translateY(0);
    }
    to {
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
        transform: translateY(-5px);
    }
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-secondary);
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.launch-date {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: var(--spacing-md);
}

/* ===== NOTIFY BUTTON ===== */
.notify-container {
    margin-top: var(--spacing-lg);
    position: relative;
    padding: var(--spacing-md);
}

.stars-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, white, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 60px 30px, white, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 100px 70px, white, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 150px 20px, white, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 200px 50px, white, rgba(0,0,0,0));
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.notify-container:hover .stars-bg {
    opacity: 0.5;
}

.notify-button {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.notify-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.notify-button i {
    margin-right: 8px;
    animation: ring 4s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    5%, 15% { transform: rotate(15deg); }
    10%, 20% { transform: rotate(-15deg); }
    25% { transform: rotate(0); }
}

/* ===== FOOTER ===== */
.launch-footer {
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.launch-footer p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    backdrop-filter: blur(3px);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--background);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    overflow: hidden;
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 1.8rem;
    color: var(--text-lighter);
    cursor: pointer;
    transition: color var(--transition-fast);
    background: none;
    border: none;
    line-height: 1;
    padding: 0;
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary);
}

.modal-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    border-radius: var(--radius-full);
}

/* Notification Form Styling */
.notification-form {
    text-align: left;
    margin-top: var(--spacing-lg);
}

.notification-form .form-group {
    margin-bottom: var(--spacing-md);
}

.notification-form label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.notification-form input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background-color: var(--background);
    color: var(--text-dark);
}

.notification-form input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.notification-form .submit-btn {
    width: 100%;
    padding: 0.9rem;
    margin-top: var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.notification-form .submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.response-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 500;
    min-height: 30px;
    font-size: 0.95rem;
}

.success-message {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.error-message {
    background-color: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Modal Success States */
.modal-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    animation: scaleIn 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.modal-icon.success {
    color: var(--secondary);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal button.modal-btn {
    min-width: 120px;
    margin-top: var(--spacing-md);
}

/* Responsive Styles */
@media (max-width: 576px) {
    .modal-content {
        padding: var(--spacing-lg) var(--spacing-md);
        width: 95%;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .notification-form label {
        font-size: 0.9rem;
    }
    
    .notification-form input {
        padding: 0.75rem 0.9rem;
    }
    
    .notification-form .submit-btn {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .modal-close {
        top: var(--spacing-sm);
        right: var(--spacing-sm);
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .launch-announcement h1 {
        font-size: 2.5rem;
    }
    
    .preview-image {
        order: -1;
        margin-bottom: var(--spacing-xl);
    }
    
    .device-mockup {
        transform: perspective(800px) rotateY(0) rotateX(0);
        max-width: 500px;
        margin: 0 auto var(--spacing-lg);
    }
    
    .hero-launch-info {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .hero-action {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .launch-announcement h1 {
        font-size: 2rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .features-preview {
        grid-template-columns: 1fr;
    }

    .partnership-types {
        justify-content: center;
    }
    
    .benefit-item {
        padding: var(--spacing-md);
    }
    
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
    
    .launch-header-info {
        width: 100%;
        align-items: flex-start;
    }
    
    .launch-date {
        width: 100%;
        justify-content: center;
    }
    
    .alternative-badge {
        width: 100%;
        text-align: center;
    }
    
    .theme-toggle {
        top: 20px; /* Restore original position */
    }
}

@media (max-width: 576px) {
    .launch-announcement h1 {
        font-size: 1.75rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input {
        border-radius: var(--radius-md);
        margin-bottom: var(--spacing-sm);
    }
    
    .btn-primary {
        border-radius: var(--radius-md);
        width: 100%;
    }

    .contact-email {
        font-size: 0.95rem;
        padding: var(--spacing-sm);
        width: 100%;
        justify-content: center;
    }
    
    .countdown-date {
        font-size: 1rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .logo-container {
        width: 100%;
        justify-content: space-between;
    }
    
    .launch-countdown-mini {
        font-size: 0.9rem;
    }
    
    .launch-countdown-mini span {
        font-size: 1.1rem;
    }
}

/* Accessibility Enhancements */
.visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* SEO & Accessibility optimizations for content */
h1, h2, h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Focus styles for better accessibility */
a:focus, button:focus, input:focus {
    outline: 2px dashed var(--primary);
    outline-offset: 2px;
}

/* Skip to content for accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 0;
}

/* Footer navigation */
.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.footer-nav a {
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-nav a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Print styles for better SEO */
@media print {
    .countdown-container, 
    .notification-form,
    .device-mockup,
    .features-preview {
        page-break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
}

/* About Section */
.about-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--background-alt);
}

.about-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
    line-height: 1.7;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.team-member {
    background-color: var(--background);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.team-member h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.team-member p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Roadmap Section */
.roadmap-section {
    padding: var(--spacing-3xl) 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--border);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-marker::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--background);
    border: 4px solid var(--border);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-marker.current::before {
    border-color: var(--primary);
}

.timeline-marker span {
    position: absolute;
    top: -30px;
    background-color: var(--primary-light);
    color: white;
    padding: 5px 10px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.timeline-content {
    background-color: var(--background);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow);
}

.timeline-content h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--background-alt);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--background);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: rgba(79, 70, 229, 0.05);
}

.faq-question h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-icon {
    color: var(--primary);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--spacing-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Press Section */
.press-section {
    padding: var(--spacing-3xl) 0;
}

.press-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--background);
    padding: var(--spacing-xl);
    border-radius: var (--radius-lg);
    box-shadow: var(--shadow);
}

.press-content p {
    color: var(--text-light);
    margin-bottom: var (--spacing-lg);
}

.press-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
}

.btn-outline-alt:hover:not(:disabled) {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-outline-alt:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    border-color: var(--border-dark);
    color: var (--text-light);
}

.badge-soon {
    font-size: 0.7rem;
    background-color: var(--primary-light);
    color: white;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    margin-left: var(--spacing-xs);
}

/* Enhanced Footer */
.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

/* Responsive styles for new sections */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
    }
    
    .timeline-marker::before {
        left: 30px;
    }
    
    .timeline-marker span {
        left: 50px;
    }
    
    .timeline-content {
        margin-left: 60px;
    }
}

@media (max-width: 768px) {
    .press-buttons {
        flex-direction: column;
        gap: var (--spacing-md);
    }
    
    .btn-outline-alt {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .faq-question {
        padding: var(--spacing-md);
    }
    
    .faq-item.active .faq-answer {
        padding: 0 var(--spacing-md) var(--spacing-md);
    }
}

/* Theme Toggle Button */
.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--background);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow);
    transition: all var(--transition-normal);
    overflow: hidden;
    padding: 0; /* Remove padding */
}

.theme-toggle:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.theme-toggle i {
    font-size: 1.2rem;
    color: var(--text-dark);
    position: absolute;
    transition: all var(--transition-normal);
}

.theme-toggle .fa-sun {
    opacity: 0;
    transform: translateY(40px);
}

.theme-toggle .fa-moon {
    opacity: 1;
    transform: translateY(0);
}

[data-theme="dark"] .theme-toggle .fa-sun {
    opacity: 1;
    transform: translateY(0);
}

[data-theme="dark"] .theme-toggle .fa-moon {
    opacity: 0;
    transform: translateY(-40px);
}

/* Dark mode specific styles */
[data-theme="dark"] body {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

[data-theme="dark"] .video-container {
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

[data-theme="dark"] .collab-section {
    background-color: var(--background);
    border: 1px solid var(--border);
}

[data-theme="dark"] .modal-content {
    background-color: var(--background);
    border: 1px solid var(--border);
}

[data-theme="dark"] .social-links a {
    background-color: var(--background-alt);
    color: var(--text-light);
}

/* Floating Countdown Badge */
.floating-countdown {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--launch-primary);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    z-index: 90;
    animation: float 3s ease-in-out infinite;
}

.floating-countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
}

.floating-countdown-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.floating-countdown-unit {
    font-size: 0.75rem;
    opacity: 0.9;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Enhanced responsive fixes */
.coming-soon-page {
    margin-top: 60px; /* Space for the ribbon */
}

@media (max-width: 992px) {
    .ribbon-content {
        flex-wrap: wrap;
        padding: 10px var(--spacing-md);
    }
    
    .coming-soon-page {
        margin-top: 80px;
    }
    
    .animated-headline h1 {
        font-size: 2.5rem;
    }
    
    .animated-words {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .ribbon-content {
        gap: var(--spacing-sm);
    }
    
    .launching-sticker {
        top: -30px;
        left: -10px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .animated-headline h1 {
        font-size: 2rem;
    }
    
    .animated-words {
        display: block;
        min-width: auto;
    }
    
    .coming-soon-page {
        margin-top: 100px;
    }
}

@media (max-width: 576px) {
    .ribbon-button {
        width: 100%;
        text-align: center;
        margin-top: var(--spacing-xs);
    }
    
    .floating-countdown {
        width: 70px;
        height: 70px;
    }
    
    .ribbon-text strong {
        font-size: 1rem;
    }
    
    .launching-sticker {
        transform: scale(0.9) rotate(-10deg);
    }
    
    .animated-headline h1 {
        font-size: 1.75rem;
    }
}

/* Animation classes for scroll-triggered animations */
.pre-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Section Styling for All Sections */
.section-card {
    position: relative;
    border-radius: var(--section-border-radius);
    border: var(--section-border-width) solid var(--section-border-color);
    box-shadow: var(--section-box-shadow);
    background-color: var(--section-background);
    backdrop-filter: blur(10px);
    overflow: hidden;
    padding: var(--spacing-3xl) var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--launch-primary), var(--primary), var(--launch-accent));
    opacity: 0.8;
}

[data-theme="dark"] .section-card {
    --section-border-color: rgba(129, 140, 248, 0.2);
    --section-background: rgba(31, 41, 55, 0.8);
}

/* Section Header Styling */
.section-header {
    position: relative;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    z-index: 2;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--launch-primary), var(--primary));
    border-radius: var(--radius-full);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Templates Preview Section */
.templates-preview-section {
    padding: var(--spacing-3xl) var(--spacing-xl);
}

.templates-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var (--spacing-xl);
}

.template-preview-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--background);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.template-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.template-preview-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.template-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.template-preview-card:hover .template-preview-image img {
    transform: scale(1.05);
}

.template-overlay {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 2;
}

.template-category {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.template-preview-info {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.template-preview-info h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.template-preview-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
    flex-grow: 1;
}

.templates-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.templates-cta p {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
}

.templates-cta-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

/* Apply new border styling to existing sections */
.benefits-section {
    text-align: center;
}

.benefits-section h2 {
    margin-bottom: var(--spacing-xl);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary), var(--launch-primary));
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

.timeline-marker::before {
    border: 3px solid var(--primary);
    box-shadow: 0 0 0 5px rgba(79, 70, 229, 0.1);
}

.timeline-marker.current::before {
    background-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-light);
}

.timeline-content {
    border: var(--section-border-width) solid var(--section-border-color);
    transition: all var(--transition-normal);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* FAQ Section with enhanced styling */
.faq-item {
    border: var(--section-border-width) solid var(--section-border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.faq-item.active {
    border-color: var(--primary-light);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.1);
}

/* Media Queries */
@media (max-width: 992px) {
    .templates-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-card {
        padding: var(--spacing-2xl) var(--spacing-md);
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .templates-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .template-preview-info {
        padding: var(--spacing-md);
    }
    
    .templates-cta p {
        font-size: 1rem;
    }
}

/* ===== COLLABORATION SECTION ===== */
.collab-section {
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background-color: var(--background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.collab-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
}

.collab-section h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.collab-section p {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.collab-types {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.collab-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    transition: transform var(--transition-normal);
}

.collab-type:hover {
    transform: translateY(-5px);
}

.collab-type i {
    font-size: 1.8rem;
    color: var(--primary);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-xs);
}

.collab-type span {
    font-weight: 500;
    color: var(--text-dark);
}

.collab-email {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: rgba(79, 70, 229, 0.05);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-weight: 500;
    transition: all var(--transition-normal);
}

.collab-email:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Responsive styles for collaboration section */
@media (max-width: 768px) {
    .collab-types {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 576px) {
    .collab-types {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .collab-type {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }
    
    .collab-email {
        width: 100%;
        justify-content: center;
    }
}

/* Add these new styles to the existing CSS file */

/* Launch Badge */
.launch-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), #8e44ad);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transform: rotate(5deg);
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.5);
    z-index: 10;
}

.launch-badge span {
    position: relative;
    display: inline-block;
    animation: wiggle 2s infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Video Preview Section */
.video-preview {
    margin: var(--spacing-2xl) 0;
    text-align: center;
}

.video-preview h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.video-preview h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    border-radius: var(--radius-full);
}

.video-container {
    position: relative;
    margin: 0 auto var(--spacing-md);
    max-width: 640px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: #000;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform var(--transition-normal);
}

.video-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.video-container video {
    display: block;
    width: 100%;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color var(--transition-normal);
}

.video-overlay:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.video-overlay i {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
    transform: scale(1);
    transition: transform var(--transition-normal);
}

.video-overlay:hover i {
    transform: scale(1.1);
    opacity: 1;
}

.preview-caption {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto;
}

/* Enhanced Notification Button */
.notify-container {
    position: relative;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
}

.stars-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, white, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 60px 30px, white, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 100px 70px, white, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 150px 20px, white, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 200px 50px, white, rgba(0,0,0,0));
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.notify-container:hover .stars-bg {
    opacity: 0.5;
}

.notify-button {
    position: relative;
    z-index: 2;
}

.notify-button i {
    margin-right: 8px;
    animation: ring 4s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    5%, 15% { transform: rotate(15deg); }
    10%, 20% { transform: rotate(-15deg); }
    25% { transform: rotate(0); }
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: var(--background);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow);
}

.social-links a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Rocket Animation */
.rocket-animation {
    position: fixed;
    bottom: -100px;
    left: 10%;
    font-size: 2rem;
    color: var(--primary);
    animation: rocketLaunch 6s ease-in infinite;
    opacity: 0;
    z-index: 10;
    pointer-events: none;
}

@keyframes rocketLaunch {
    0% { 
        bottom: -100px;
        opacity: 0;
        transform: rotate(45deg);
    }
    10% { 
        opacity: 1; 
    }
    40%, 100% { 
        bottom: 120vh;
        opacity: 0;
        transform: rotate(45deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .video-container {
        transform: none;
    }
    
    .video-container:hover {
        transform: scale(1.02);
    }
    
    .rocket-animation {
        font-size: 1.5rem;
    }
    
    .launch-badge {
        right: 10px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .video-preview h3 {
        font-size: 1.3rem;
    }
    
    .rocket-animation {
        left: 5%;
    }
}

/* Optimized mobile safe areas for iOS and modern devices */
@supports (padding: max(0px)) {
    .launch-container {
        padding-left: max(var(--spacing-lg), env(safe-area-inset-left));
        padding-right: max(var(--spacing-lg), env(safe-area-inset-right));
        padding-bottom: max(var(--spacing-lg), env(safe-area-inset-bottom));
    }
    
    .theme-toggle {
        right: max(20px, env(safe-area-inset-right));
        top: max(20px, env(safe-area-inset-top));
    }
    
    @media (max-width: 576px) {
        .launch-container {
            padding-left: max(var(--spacing-md), env(safe-area-inset-left));
            padding-right: max(var(--spacing-md), env(safe-area-inset-right));
        }
        
        .theme-toggle {
            right: max(10px, env(safe-area-inset-right));
            top: max(10px, env(safe-area-inset-top));
        }
    }
}

/* Improved mobile responsiveness */
@media (max-width: 768px) {
    .launch-content h1 {
        font-size: 2.5rem;
    }
    
    .countdown {
        gap: var(--spacing-xs);
    }
    
    .countdown-item {
        min-width: unset;
        padding: var(--spacing-sm) var(--spacing-xs);
        max-width: none;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .launch-container {
        padding-top: var(--spacing-xl);
    }
    
    /* Mobile header optimization */
    .logo {
        margin-bottom: var(--spacing-lg);
    }
    
    .notify-container {
        width: 100%;
    }
    
    .notify-button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .launch-content h1 {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 5px; /* Even smaller gap for very small screens */
    }
    
    .countdown-item {
        padding: var(--spacing-xs);
        border-radius: var(--radius-md);
    }
    
    .countdown-number {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .collab-type i {
        font-size: 1.5rem;
        height: 40px;
        width: 40px;
    }
    
    .launch-badge {
        top: 10px;
        right: 10px;
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}

/* Very small devices */
@media (max-width: 375px) {
    .countdown-item {
        padding: 5px;
    }
    
    .countdown-number {
        font-size: 1.3rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
    
    .launch-content h1 {
        font-size: 1.8rem;
    }
    
    .launch-description {
        font-size: 1rem;
    }
}

/* Add this to your existing CSS file */

/* Official URL Section */
.official-url-section {
    background: linear-gradient(to right, rgba(79, 70, 229, 0.05), rgba(79, 70, 229, 0.1));
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(79, 70, 229, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.official-url-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/grid-pattern.svg');
    opacity: 0.1;
    pointer-events: none;
}

.url-badge {
    background-color: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

.url-display h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.official-url {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.official-url::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.official-url:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.official-url:hover::after {
    width: 80%;
}

.url-display p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Dark theme adjustments for URL section */
html[data-theme="dark"] .official-url-section {
    background: linear-gradient(to right, rgba(79, 70, 229, 0.1), rgba(79, 70, 229, 0.15));
    border-color: rgba(79, 70, 229, 0.3);
}

html[data-theme="dark"] .url-display h3 {
    color: var(--text-light);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .official-url {
        font-size: 1.5rem;
    }
}

/* Hero Image Container */
.hero-image-container {
    width: 100%;
    margin: 2rem 0;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateX(2deg);
    transition: transform var(--transition-normal);
}

.hero-image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), transparent);
    z-index: 1;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-normal);
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
}

.hero-image-container:hover img {
    transform: scale(1.03);
}

/* Dark mode adjustments for hero image */
[data-theme="dark"] .hero-image-container::before {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.2), transparent);
}

@media (max-width: 768px) {
    .hero-image-container {
        transform: none;
        margin: 1.5rem 0;
    }
    
    .hero-image-container:hover {
        transform: scale(1.02);
    }
}

/* Hackathon Promo Section */
.hackathon-promo {
    padding: 6rem 0;
    background-color: var(--background-alt);
    position: relative;
    overflow: hidden;
}

.hackathon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hackathon-info {
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hackathon-highlights {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-text span {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

[data-theme="dark"] .highlight-text span {
    color: var(--text-light);
}

.highlight-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.hackathon-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(79, 70, 229, 0.1);
}

.hackathon-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.main-image {
    width: 100%;
    height: auto;
    vertical-align: middle;
    transition: transform 0.5s ease;
}

.hackathon-image:hover .main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
}

.countdown-container {
    color: white;
    text-align: center;
}

.countdown-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.countdown-item {
    text-align: center;
}

.countdown-item span {
    font-size: 1.75rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.countdown-item p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive Styles for Hackathon Section */
@media (max-width: 992px) {
    .hackathon-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hackathon-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hackathon-actions {
        flex-direction: column;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-item span {
        font-size: 1.5rem;
    }
}
