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

:root {
    --bg: #0055d4;
    /* Bright LEGO Blue */
    --bg-subtle: #0047b3;
    --lego-red: #ff0000;
    --lego-yellow: #ffcc00;
    --eu-gold: #ffcc00;
    --gold-glow: rgba(255, 204, 0, 0.3);
    --text: #ffffff;
    --text-muted: #e0e7ff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --warning: #ff8800;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Background Gradients */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 204, 0, 0.1) 0%, transparent 50%);
    background-color: var(--bg);
    z-index: -1;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-bottom: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--lego-yellow);
    border: 2px solid #000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.logo-icon svg {
    width: 32px;
    height: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--lego-yellow);
}

.lang-selector {
    display: flex;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.lang-selector button {
    background: transparent;
    border: 1px solid transparent;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.5;
}

.lang-selector button:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lego-yellow);
    margin-bottom: 2rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.badge-link {
    text-decoration: none;
    display: inline-block;
}

.badge-link:hover .badge {
    background: var(--lego-yellow);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.accent {
    background: linear-gradient(to right, var(--eu-gold), #fff9e6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--eu-gold);
    color: #000;
    box-shadow: 0 0 30px var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-secondary {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Warning Section */
.warning-box {
    margin-top: 4rem;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.warning-icon {
    color: var(--warning);
}

.warning-text {
    font-size: 0.875rem;
    color: rgba(245, 158, 11, 0.8);
}

/* Comparison Section */
.comparison {
    padding: 8rem 0;
}

.section-label {
    text-align: center;
    color: var(--eu-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.comparison h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    padding: 3rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: border-color 0.3s;
}

.card:hover {
    border-color: var(--lego-yellow);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-muted);
}

.card ul {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
}

.card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--lego-yellow);
    font-weight: bold;
}

.quote-box {
    background: rgba(255, 204, 0, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 204, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.quote-box::after {
    content: "🎙️";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.2;
    font-size: 1.5rem;
}

/* Feature Grid */
.features {
    padding: 4rem 0 8rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feat-icon {
    color: var(--lego-red);
    flex-shrink: 0;
}

.feat-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .lang-selector {
        margin-left: auto;
    }
}

html {
    scroll-behavior: smooth;
}