/* Shared Inline Styles - Common across multiple pages */

/* ===== LOADER STYLES ===== */
#loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: rgb(0, 5, 26);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px;
}

#loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #4A90E2;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(213, 157, 5, 0.234);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loading-message {
    font-size: 3.125rem;
    color: #FF8C00;
    padding-top: 10px;
    text-align: center;
    font-family: 'Anta', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#instructions li {
    margin-bottom: 5px;
}

/* ===== NAVIGATION MENU STYLES ===== */
nav.main-menu {
    background: rgba(16, 15, 15, 0.95) !important;
    border: 1px solid rgba(255, 140, 0, 0.4) !important;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px !important;
}

nav.main-menu a:link,
nav.main-menu a:hover,
nav.main-menu a:focus,
nav.main-menu a {
    color: #f3f3f3 !important;
    background-color: transparent !important;
    border-radius: 6px !important;
    margin: 2px 0 !important;
    padding: 8px 15px !important;
    transition: all 0.2s ease !important;
    font-family: 'Fira Sans', sans-serif !important;
    font-size: 1.75rem !important;
    line-height: 3.75rem !important;
    text-decoration: none !important;
    border: none !important;
}

nav.main-menu a:hover {
    background-color: rgba(255, 140, 0, 0.15) !important;
    color: #FF8C00 !important;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.2) !important;
}

nav.main-menu ul ul {
    background: rgba(16, 15, 15, 0.98) !important;
    border: 1px solid rgba(255, 140, 0, 0.3) !important;
    border-radius: 6px !important;
    margin-top: 3px !important;
    padding: 8px !important;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

nav.main-menu ul ul li a {
    color: #f3f3f3 !important;
    background-color: transparent !important;
    border-radius: 4px !important;
    margin: 1px 0 !important;
    padding: 6px 12px !important;
    font-size: 2rem !important;
    line-height: 3rem !important;
    transition: all 0.2s ease !important;
    display: block !important;
    text-decoration: none !important;
    border: none !important;
}

nav.main-menu ul ul li a:hover {
    background-color: rgba(255, 140, 0, 0.15) !important;
    color: #FF8C00 !important;
    box-shadow: 0 2px 6px rgba(255, 140, 0, 0.2) !important;
}

.show-menu a {
    width: 60px !important;
    height: 60px !important;
    font-size: 2.375rem !important;
    line-height: 60px !important;
}

/* ===== COOKIE NOTICE STYLES ===== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(24,26,27,0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
    padding: 15px 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.cookie-content a {
    color: #FF8C00;
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
}

.cookie-content a:hover {
    text-decoration: underline;
}

/* ===== HERO LOGO ANIMATION ===== */
@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-logo-floating {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 70px;
    height: auto;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    opacity: 0.98;
}

@media (max-width: 500px) {
    .hero-logo-floating { display: none; }
}

/* ===== POLICY PAGE BASE STYLES ===== */
.policy-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.policy-container p {
    margin-bottom: 15px;
}

.policy-container footer {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.policy-container .footer-copyright {
    font-size: 1rem;
}

.policy-container .footer-copyright a {
    color: #fff;
    text-decoration: none;
}
