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

body {
    font-family: 'Unbounded', sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
    background: -webkit-linear-gradient(90deg, #060057,#00011f); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(90deg, #060057,#00011f); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #00d9ff;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo:hover {
    color: #00b8d4;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;

    margin-right: 10px;
    &.active {
        color: #00d9ff;
    }

}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00d9ff;
    transition: width 0.3s ease;
}

.nav a:hover {
    color: #00d9ff;
}

.nav a:hover::after {
    width: 100%;
}

.cta-button {
    padding: 12px 28px;
    background: linear-gradient(135deg, #00d9ff 0%, #0099cc 100%);
    color: #0f0f0f;
    border: none;
    border-radius: 8px;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav,
    .cta-button {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

.lang-switcher {
    padding: 8px 16px;
    background: transparent;
    color: #00d9ff;
    border: 2px solid #00d9ff;
    border-radius: 6px;
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lang-switcher:hover {
    background: #00d9ff;
    color: #0f0f0f;
}

.lang-switcher-active {
    background: #00d9ff;
    color: #0f0f0f;
}

.lang-switcher-active:hover {
    background: #00b8d4;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 40px 20px;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    color: #00d9ff;
    max-width: 600px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

.fade-in-delay-x2 {
    animation: fadeIn 1s ease-out 1.2s forwards;
    opacity: 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}