/* ========== DISCLAIMER PAGE – COMPLETE THEME ========== */

:root {
    --primary-500: #f97415;
    --bg-primary: #0b101d;
    --bg-secondary: #1a2340;
    --text-primary: #ffffff;
    --text-secondary: #c4c4c4;
    --text-tertiary: #9e9e9e;
    --border-color: #404040;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* ========== HEADER STYLES ========== */
header {
    background: rgba(23, 32, 60, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 1rem;
}

.logo {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 48px;
    width: auto;
}

.logo span {
    font-size: 1.7rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-title-section {
    flex: 1;
    display: flex;
    justify-content: center;
}

.instant-tools {
    position: relative;
}

.instant-tools-btn {
    background: rgba(249, 116, 21, 0.1);
    border: 2px solid rgba(249, 116, 21, 0.3);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.instant-tools-btn:hover {
    background: rgba(249, 116, 21, 0.2);
    border-color: var(--primary-500);
    transform: translateY(-2px);
}

/* ========== FIXED DROPDOWN (display: none / block) ========== */
.tools-container {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    max-width: 800px;
    min-width: 300px;
    background: #17203c;
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(249, 116, 21, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    padding: 0;
}

.tools-container.show {
    display: block !important;
}

.tools-content-container {
    padding: 2rem;
}

.tools-content-container h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tools-grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.tool-item-box {
    background: var(--bg-secondary);
    border: 1px solid rgba(249, 116, 21, 0.3);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.tool-item-box:hover {
    background: rgba(249, 116, 21, 0.1);
    border-color: var(--primary-500);
    transform: translateY(-3px);
}

.tools-footer-area {
    border-top: 1px solid rgba(249, 116, 21, 0.3);
    padding-top: 1.5rem;
}

.dropdown-site-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.dropdown-site-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-site-links a:hover {
    color: var(--text-primary);
}

.user-actions .btn {
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    background: var(--primary-500);
    color: white;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.user-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(249, 116, 21, 0.2);
}

/* ========== HERO ========== */
.disclaimer-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(23, 32, 60, 0.6);
    border-radius: 24px;
    border: 1px solid rgba(249, 116, 21, 0.3);
    margin-bottom: 3rem;
}

.disclaimer-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-500) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.disclaimer-hero p {
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.disclaimer-hero p:last-of-type {
    font-size: 1.1rem;
}

.disclaimer-hero strong {
    color: var(--text-primary);
}

/* ========== SECTIONS ========== */
.disclaimer-section {
    background: rgba(23, 32, 60, 0.5);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(249, 116, 21, 0.2);
}

.disclaimer-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-500);
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.disclaimer-section ul,
.disclaimer-section ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-secondary);
}

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

.disclaimer-section a {
    color: var(--primary-500);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.disclaimer-section code {
    background: rgba(249, 116, 21, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--text-primary);
}

/* ========== CALLOUT ========== */
.disclaimer-callout {
    background: rgba(249, 116, 21, 0.08);
    border: 1px solid rgba(249, 116, 21, 0.35);
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    margin: 1.2rem 0 1.6rem;
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.disclaimer-callout i {
    color: var(--primary-500);
    font-size: 1.3rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.disclaimer-callout p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.disclaimer-callout strong {
    color: var(--text-primary);
}

/* ========== GRID ========== */
.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
}

.disclaimer-grid-item {
    background: rgba(23, 32, 60, 0.7);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(249, 116, 21, 0.2);
    transition: all 0.3s ease;
}

.disclaimer-grid-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-500);
    background: rgba(249, 116, 21, 0.06);
}

.disclaimer-grid-item i {
    font-size: 2.5rem;
    color: var(--primary-500);
    margin-bottom: 0.8rem;
    display: block;
}

.disclaimer-grid-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.disclaimer-grid-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97415 0%, #ff8c42 50%, #f97415 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    padding-right: 2rem;
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo a {
    text-decoration: none;
    color: white;
    font-size: 35px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-tagline {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 400px;
    padding-left: 1rem;
    border-left: 3px solid rgba(249, 116, 21, 0.3);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: rgba(249, 116, 21, 0.1);
    border-color: #f97415;
    color: #f97415;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 116, 21, 0.2);
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #f97415;
    position: relative;
    display: inline-block;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
    transition: 300ms ease;
}

.footer-col ul li:hover {
    transform: translateX(5px);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 300ms ease;
}

.footer-col a:hover {
    color: #f97415;
}

.copyright-area {
    text-align: center;
    padding-top: 3rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    border-top: 1px solid rgba(249, 116, 21, 0.2);
    margin-top: 3rem;
    position: relative;
}

.copyright-area::before {
    content: '🎬';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-primary);
    padding: 0 1rem;
    font-size: 1.2rem;
}

/* ========== STICKY CTA ========== */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta-trigger {
    background: #f97415;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(249, 116, 21, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-trigger:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(249, 116, 21, 0.6);
}

.sticky-cta-menu {
    position: absolute;
    bottom: calc(100% + 15px);
    right: 0;
    background: #17203c;
    border-radius: 16px;
    border: 1px solid rgba(249, 116, 21, 0.3);
    padding: 1rem;
    min-width: 200px;
    display: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.sticky-cta.open .sticky-cta-menu {
    display: block;
}

.sticky-cta-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.sticky-cta-menu a:hover {
    background: rgba(249, 116, 21, 0.1);
    color: white;
}

/* ========== MOBILE DRAWER ========== */
.mobile-menu-toggle {
    display: none;
}

.mobile-side-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85%, 320px);
    height: 100vh;
    background: rgba(18, 25, 45, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    transition: right 0.35s ease;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(249, 116, 21, 0.3);
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.2rem;
    overflow-y: auto;
}

.mobile-side-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.close-drawer {
    background: rgba(249, 116, 21, 0.2);
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-drawer:hover {
    background: #f97415;
    transform: rotate(90deg);
}

.drawer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.drawer-nav-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.2rem;
}

.drawer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.drawer-nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    transition: all 0.2s;
}

.drawer-nav-links a:hover {
    color: white;
}

.drawer-features-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.2rem;
}

.drawer-features-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.6rem 0;
    cursor: pointer;
}

.drawer-features-list {
    display: none;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 0.8rem;
    padding-left: 0.5rem;
}

.drawer-features-list.show {
    display: flex;
}

.drawer-features-list a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    transition: all 0.2s;
    border-left: 2px solid transparent;
    padding-left: 12px;
}

.drawer-features-list a i {
    width: 22px;
    color: #f97415;
}

.drawer-features-list a:hover {
    color: white;
    border-left-color: #f97415;
    background: rgba(249, 116, 21, 0.1);
}

.drawer-get-started {
    background: #f97415;
    color: white;
    border: none;
    padding: 0.9rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    margin-top: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
}

.drawer-get-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 116, 21, 0.4);
}

.drawer-footer-links {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-footer-links a {
    color: var(--text-tertiary);
    font-size: 0.75rem;
    text-decoration: none;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== GLOBAL ICON THEME FIX (Forces all icons to orange) ========== */
.instant-tools-btn i,
.tool-item-box i,
.tools-content-container h3 i,
.dropdown-site-links a i,
.user-actions .btn i,
.disclaimer-hero i,
.disclaimer-section h2 i,
.disclaimer-section li i,
.disclaimer-callout i,
.disclaimer-grid-item i,
.footer-logo i,
.footer-col h3 i,
.social-link i,
.footer-col a i,
.drawer-nav-links a i,
.drawer-features-btn i,
.drawer-features-list a i,
.drawer-get-started i,
.drawer-footer-links a i,
.sticky-cta i,
.sticky-cta-menu a i,
.copyright-area i {
    color: #f97415 !important;
}

/* Social icons need to be white unless hovered, so we override the global rule for them */
.social-link i {
    color: rgba(255, 255, 255, 0.7) !important;
}

.social-link:hover i {
    color: #f97415 !important;
}

/* Chevron in the drawer button should match text unless toggled */
.drawer-features-btn i {
    color: #f97415 !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
    }
    .site-title-section {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }
    .tools-grid-box {
        grid-template-columns: repeat(2, 1fr);
    }
    .disclaimer-card {
        padding: 1.5rem;
    }
    .disclaimer-hero h1 {
        font-size: 2.2rem;
    }
    .disclaimer-section h2 {
        font-size: 1.5rem;
    }
    .disclaimer-section {
        padding: 1.8rem;
    }
}

@media (max-width: 780px) {
    .site-title-section {
        display: none !important;
    }
    .user-actions {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: flex !important;
        background: rgba(249, 116, 21, 0.1);
        border: 2px solid rgba(249, 116, 21, 0.3);
        border-radius: 12px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--text-primary);
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    .header-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative !important;
    }
    header {
        padding: 0.7rem 1rem !important;
    }
    .logo-image {
        height: 38px !important;
    }
    .logo span {
        font-size: 1.2rem !important;
    }
    .tools-container {
        width: 95vw;
    }
    .tools-grid-box {
        grid-template-columns: 1fr;
    }
    .disclaimer-hero {
        padding: 2.5rem 1.5rem;
    }
    .disclaimer-hero h1 {
        font-size: 1.8rem;
    }
    .disclaimer-section {
        padding: 1.5rem;
    }
    .disclaimer-section ul,
    .disclaimer-section ol {
        margin-left: 1.2rem;
    }
    .disclaimer-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .brand-tagline {
        margin-left: auto;
        margin-right: auto;
        border-left: none;
        padding-left: 0;
    }
    .social-links {
        justify-content: center;
    }
    .footer-col {
        text-align: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.5rem 0.8rem !important;
    }
    .logo-image {
        height: 32px !important;
    }
    .logo span {
        font-size: 1rem !important;
    }
    .mobile-menu-toggle {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.1rem !important;
    }
    .disclaimer-hero {
        padding: 2rem 1rem;
    }
    .disclaimer-hero h1 {
        font-size: 1.5rem;
    }
    .disclaimer-section {
        padding: 1.2rem;
    }
    .disclaimer-callout {
        flex-direction: column;
        align-items: stretch;
        padding: 1.2rem;
    }
    .disclaimer-section ul,
    .disclaimer-section ol {
        margin-left: 1rem;
    }
    .dropdown-site-links {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    .tools-container {
        min-width: auto;
    }
}