@font-face {
    font-family: 'TazBold';
    src: url('/assets/fonts/TazBold.otf') format('opentype');
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: linear-gradient(45deg, #4A90E2, #5a60d6, #5f3cc6, #6A0DAD, #5f3cc6, #5a60d6, #4A90E2);
    background-size: 800% 800%;
    animation: gradientShift 30s linear infinite;
    color: white;
    font-family: 'TazBold', sans-serif;
}


@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.video-container {
    position: relative;
    width: 80%;
    margin: 50px auto;
    padding-top: 40%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 1.2rem;
    z-index: 2;
}
.site-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 3rem 2rem;
    font-size: 14px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: #333;
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.footer-logos {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-logos img {
    height: 24px;
}

@media (min-width: 768px) {
    .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    }

    .footer-disclaimer {
    text-align: center;
    }
}


#play-button {
    background: #4A90E2;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-family: 'TazBold', sans-serif;
}

#play-button:hover {
    background: #6915a5;
}

/* Navigation Styles */
.nav-bar {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.nav-logo-section .nav-logo {
    height: 40px;
    width: auto;
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.nav-link span {
    font-size: 0.9rem;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .nav-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-link span {
        display: none;
    }
    
    .nav-link {
        padding: 0.5rem;
        min-width: 40px;
        justify-content: center;
    }
}
