/* ============================================
   SQUIZITO FAN - LEGAL COMPLIANCE COMPONENTS
   CSS Styles for Age Gate, Cookie Banner,
   Disclaimers, and Enhanced Footer
   ============================================ */

/* ============================================
   AGE VERIFICATION GATE
   ============================================ */

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.age-gate-modal {
    background: linear-gradient(180deg, #1a1a24 0%, #12121a 100%);
    border: 1px solid rgba(179, 244, 0, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 40px rgba(179, 244, 0, 0.2);
}

.age-gate-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.age-gate-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.age-gate-subtitle {
    color: #a0a0b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.age-gate-warning {
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #ff6b8a;
    font-size: 0.9rem;
}

.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.age-gate-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.age-gate-btn-confirm {
    background: #b3f400;
    color: #0a0a0f;
    box-shadow: 0 0 20px rgba(179, 244, 0, 0.4);
}

.age-gate-btn-confirm:hover {
    background: #d4ff4d;
    transform: translateY(-2px);
}

.age-gate-btn-exit {
    background: transparent;
    color: #a0a0b0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-gate-btn-exit:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.age-gate-legal-text {
    font-size: 0.75rem;
    color: #606070;
    margin-top: 1.5rem;
    line-height: 1.5;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #12121a;
    border-top: 1px solid rgba(179, 244, 0, 0.3);
    padding: 1.25rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cookie-banner-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    color: #a0a0b0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: #b3f400;
    text-decoration: none;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #b3f400;
    color: #0a0a0f;
}

.cookie-btn-accept:hover {
    background: #d4ff4d;
}

.cookie-btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
    background: transparent;
    color: #a0a0b0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

/* Cookie Settings Modal */
.cookie-settings-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-settings-modal {
    background: #12121a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-settings-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category-name {
    font-weight: 600;
}

.cookie-category-desc {
    font-size: 0.85rem;
    color: #a0a0b0;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: 0.4s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #b3f400;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   VIRTUAL CURRENCY DISCLAIMER
   ============================================ */

.virtual-currency-notice {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #00d9ff;
}

.virtual-currency-notice-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.virtual-currency-notice-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #a0a0b0;
    margin-top: 0.5rem;
}

/* ============================================
   RESPONSIBLE GAMING BANNER
   ============================================ */

.responsible-gaming-banner {
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.responsible-gaming-banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.responsible-gaming-banner-icon {
    font-size: 1.5rem;
}

.responsible-gaming-banner-text {
    flex: 1;
    min-width: 200px;
}

.responsible-gaming-banner-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #ffb800;
}

.responsible-gaming-banner-link {
    color: #ffb800;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.responsible-gaming-banner-link:hover {
    text-decoration: underline;
}

/* ============================================
   ENHANCED LEGAL FOOTER
   ============================================ */

.legal-footer {
    background: #0a0a0f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 1.5rem 1.5rem;
}

.legal-footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.legal-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.legal-footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

.legal-footer-section a {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-footer-section a:hover {
    color: #b3f400;
}

/* Important Disclaimers Section */
.legal-footer-disclaimers {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.legal-footer-disclaimers h5 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-disclaimer-box {
    background: rgba(179, 244, 0, 0.05);
    border: 1px solid rgba(179, 244, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.legal-disclaimer-box p {
    color: #a0a0b0;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.legal-disclaimer-box strong {
    color: #b3f400;
}

/* Company Info */
.legal-footer-company {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-footer-company-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.85rem;
    color: #606070;
}

.legal-footer-company-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Bottom Bar */
.legal-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

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

.legal-footer-copyright {
    color: #606070;
    font-size: 0.85rem;
}

.legal-footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: #a0a0b0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-badge-18 {
    background: rgba(255, 51, 102, 0.1);
    border-color: rgba(255, 51, 102, 0.3);
    color: #ff6b8a;
}

.legal-badge-free {
    background: rgba(179, 244, 0, 0.1);
    border-color: rgba(179, 244, 0, 0.3);
    color: #b3f400;
}

/* Responsible Gaming Footer Section */
.legal-footer-responsible {
    background: rgba(255, 184, 0, 0.05);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.legal-footer-responsible p {
    color: #a0a0b0;
    font-size: 0.85rem;
    margin: 0 0 0.5rem 0;
}

.legal-footer-responsible a {
    color: #ffb800;
    text-decoration: none;
    font-weight: 600;
}

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

.legal-footer-helpline {
    font-size: 1rem;
    font-weight: 700;
    color: #ffb800;
    margin-top: 0.5rem;
}

/* ============================================
   BETTING EXIT WARNING MODAL
   ============================================ */

.betting-exit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.betting-exit-modal {
    background: #12121a;
    border: 2px solid #ff3366;
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.betting-exit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.betting-exit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff3366;
    margin-bottom: 1rem;
}

.betting-exit-warnings {
    background: rgba(255, 51, 102, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.betting-exit-warnings li {
    color: #a0a0b0;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.betting-exit-helpline {
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.betting-exit-helpline p {
    color: #ffb800;
    font-size: 0.9rem;
    margin: 0;
}

.betting-exit-helpline strong {
    font-size: 1.1rem;
}

.betting-exit-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

@media (min-width: 480px) {
    .betting-exit-buttons {
        flex-direction: row;
    }
}

.betting-exit-btn {
    flex: 1;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.betting-exit-btn-cancel {
    background: #b3f400;
    color: #0a0a0f;
}

.betting-exit-btn-proceed {
    background: transparent;
    color: #ff3366;
    border: 1px solid #ff3366;
}

.betting-exit-btn-proceed:hover {
    background: rgba(255, 51, 102, 0.1);
}

.betting-exit-checkbox {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #606070;
}
