@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 80px;
}

.logo {
    width: 48px;
    height: 48px;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}


.hero-section {
    text-align: center;
    margin-bottom: 80px;
}

.hero-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}



.hero-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    /* Remove bottom gap */
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00ff88;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
    white-space: nowrap;
    z-index: 10;
}

.magic-icon {
    width: 20px;
    height: 20px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: #b3b3b3;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.version-badge {
    display: inline-block;
    background-color: #00ff88;
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 32px;
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
}




.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    padding: 48px;
    border-radius: 0;
}

.feature-card:first-child {
    background-color: #00ff88;
    color: #1a1a1a;
    border-radius: 16px 0 0 16px;
}

.feature-card:last-child {
    background-color: #2a2a2a;
    color: #ffffff;
    border-radius: 0 16px 16px 0;
}

.feature-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ffffff;
    color: #00ff88;
}

.btn-secondary {
    background-color: #ffffff;
    color: #1a1a1a;
}

.download-icon {
    width: 20px;
    height: 20px;
}


@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }

    .feature-card:first-child {
        border-radius: 16px 16px 0 0;
    }

    .feature-card:last-child {
        border-radius: 0 0 16px 16px;
    }

    h1 {
        font-size: 36px;
    }

    .hero-image {
        max-width: 100%;
    }
}

.footer {
    padding: 60px 20px;
    text-align: center;
}

.legal-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2a2a2a;
    border-top: 1px solid #444;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-banner h3 {
    font-size: 18px;
    margin-bottom: 0;
    white-space: nowrap;
}

.cookie-text {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    flex: 1;
}

.cookie-text p {
    margin: 0;
}

.cookie-btn {
    background: #00ff88;
    color: #1a1a1a;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.cookie-btn:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-text {
        text-align: center;
    }
}