body {
    overflow: hidden;
}

.navbar-dark.bg-dark {
    min-height: 100px;
    background-color: rgba(0, 0, 0, 0.8) !important;
    border-bottom: 4px solid orange;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.3);
}

.collapse.navbar-collapse {
    justify-content: center !important;
}

.navbar-nav {
    margin: 0 auto;
    text-align: center;
}

.nav-item {
    height: 100px;
    display: flex;
    align-items: center;
}

.nav-link {
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 120px;
}

.nav-link:hover {
    background-color: orange;
    border-radius: 8px;
    color: #000;
}

.navbar-brand small {
    font-size: 0.9rem;
    color: #4e4e4e;
}

.btn-outline-light {
    border: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.btn-outline-light img {
    display: block;
}

.content-container {
    height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-box {
    background-color: rgba(0, 0, 0, 0.7);
    height: 90%;
    width: 95%;
    padding: 2rem;
    border-radius: 8px;
}

.copyright {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.8rem;
    color: #aaa;
}

.cookie-modal {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    background-color: rgba(65, 65, 65, 0.7);
    color: white;
    transition: bottom 0.5s ease-in-out;
    z-index: 1050;
    border-radius: 8px;
}

.cookie-modal.show {
    bottom: 40px;
}

.cookie-modal-content {
    padding: 1rem;
}

.cookie-modal-header,
.cookie-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-title {
    font-size: 1.25rem;
}

.cookie-modal-body {
    margin: 1rem 0;
}

.copy-modal {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 1);
    color: orange;
    padding: 1rem;
    border-radius: 8px;
    transition: top 0.2s ease-in-out;
    z-index: 1050;
}

.copy-modal.show {
    top: 20px;
}

.pulsating {
    animation: pulse 1s infinite;
    font-weight: bold;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}