::-webkit-scrollbar {
    width: 10px;
}


::-webkit-scrollbar-track {
    background: #0d0202;
}


::-webkit-scrollbar-thumb {
    background: #800c0c;
    border-radius: 10px;
    border: 2px solid #0d0202;
}


::-webkit-scrollbar-thumb:hover {
    background: #b30000;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap'); 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(180deg, #1a0505 0%, #0d0202 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(128, 12, 12, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(128, 12, 12, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

header {
    width: 100%;
    background-color: #800c0c;
    border-bottom: 4px solid #ff2e2e;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.menu-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-mobile a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-he {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-he:hover {
    transform: scale(1.05);
}

.menu-mobile h1 {
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-left: 500px;
    color: #ffffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

.links {
    display: flex;
    gap: 25px;
}

.links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.links a:hover {
    color: #ffcccc;
    border-bottom: 2px solid #ffcccc;
}

.links a.active {
    color: #ffffff;
    border-bottom: 3px solid #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    header {
        padding: 12px 20px;
        flex-wrap: wrap;
    }

    .menu-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .menu-mobile h1 {
        font-size: 1.3rem;
    }

    .links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 15px 0 5px;
    }

    .links.active {
        display: flex;
    }

    .links a {
        padding: 12px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 3px solid transparent;
    }

    .links a.active {
        border-left: 3px solid #ffffff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
    }

    .links a:hover {
        background: rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    header.active .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    header.active .hamburger span:nth-child(2) {
        opacity: 0;
    }
    header.active .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}
