body {
    background: rgb(42 40 87);
    font-family: "Noto Sans", sans-serif;
    position: relative;
}

a {
    text-decoration: none;
}

.promo-block {
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    color: #fff;
    position: relative;
}


.promo-content {
    z-index: 2;
    max-width: 600px;
}

.promo-content h1 {
    font-size: 40px;
    font-weight: 700;
}



.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 16px 32px;
    z-index: 999;
}

.navbar-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 36px;
}

.menu-bubble {
    display: flex;
    align-items: center;
    background-color: #0e0c2a;
    border-radius: 40px;
    padding: 10px 24px;
    gap: 30px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.nav-links li a.active {
    color: #49e3db;
}

.dot-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-create {
    background-color: #63e6d8;
    color: #000;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
}

.btn-login {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}

.btn-search {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}


.promo-image {
    max-width: 300px;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.promo-buttons .btn {
    margin: 5px;
    padding: 20px 30px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
}

.promo-buttons .btn-primary {

    background-color: rgb(146, 39, 143);
    border-color: rgb(146, 39, 143);
}

.promo-buttons .btn-outline-light {
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .promo-content {
        text-align: center;
    }

    .promo-image {
        margin-bottom: 20px;
    }
}


.footer-block {
    background-color: rgb(146, 39, 143);
    color: #fff;
    padding: 50px 0;
    position: relative;
}

.footer-top {
    background-color: #1d1f40;
    height: 80px;
    border-bottom-left-radius: 100% 20px;
    border-bottom-right-radius: 100% 20px;
}

.footer-content {
    padding: 40px 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-text {
    font-size: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: block;
}

.footer-links {
    margin-top: 20px;
}

.footer-icons img {
    width: 50px;
}

.footer-lang {
    margin-top: 30px;
}

.footer-date {
    font-size: 14px;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background: #0e0c2a;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    color: white;
    position: relative;
}

.modal-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    background: transparent;
    border: 1px solid #63e6d8;
    color: #63e6d8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #63e6d8;
    color: #0e0c2a;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-content input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
}

.modal-content button[type="submit"] {
    background: #63e6d8;
    color: #0e0c2a;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 12, 42, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-box {
    background: #0e0c2a;
    color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 20px #000;
}

.age-box h2 {
    margin-bottom: 15px;
    font-size: 24px;
}

.age-box p {
    margin-bottom: 20px;
    color: #63e6d8;
}

.age-box a {
    color: #63e6d8;
    text-decoration: underline;
}

.age-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-actions button {
    padding: 10px 20px;
    background: #63e6d8;
    color: #0e0c2a;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.age-actions button:hover {
    background: #4dd9cb;
}