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

html, body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
}

/* Background Blur Effect - Tailwind CSS Style */
.fixed {
    position: fixed;
}

.inset-0 {
    inset: 0;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.-z-10 {
    z-index: -10;
}

.blur-\[100px\] {
    --tw-blur: blur(100px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

/* Additional Tailwind CSS utilities */
.inset-0 {
    inset: 0;
}

/* Override for background image - make it full screen */
img.fixed.inset-0.w-full.h-full.-z-10.blur-\[100px\] {
    position: fixed !important;
    top: -10% !important;
    left: -10% !important;
    width: 120vw !important;
    height: 120vh !important;
    object-fit: cover !important;
    z-index: -10 !important;
    filter: blur(100px) !important;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}



/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.8);
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: 0.02em;
}

/* Main Content */
.main {
    padding-top: 3rem;
    padding-bottom: 6rem;
    height: calc(100vh - 3rem);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    flex: 1;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.highlight {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 500px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #6b7280;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(107, 114, 128, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: #1f2937;
    border-color: rgba(31, 41, 55, 0.5);
    background: rgba(31, 41, 55, 0.05);
}





/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.launcher-preview {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.launcher-preview:hover {
    transform: scale(1.02);
}

/* Info Section */
.info-section {
    text-align: center;
    padding: 2rem 0 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}



/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3em 1em;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-left .footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.footer-right .copyright {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .launcher-preview {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav .container {
        padding: 1rem;
    }

    .hero-section {
        padding: 2rem 0;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: none;
    }

    .hero-actions {
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .launcher-preview {
        max-width: 400px;
    }

    .version-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }

    .launcher-preview {
        max-width: 320px;
    }
}
