/* public/css/static.css */

/* --- GLOBAL STATIC LAYOUT --- */
.static-page {
    background-color: #000 !important;
    min-height: 100vh;
    color: #fff !important;
    padding-bottom: 80px;
}

.static-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HERO SECTION (NUKE THE ORANGE) --- */
.static-hero {
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 1px solid #333;
    margin-bottom: 40px;
}

.static-hero-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    
    /* FORCE OVERRIDES */
    border: 2px solid #ffffff !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important; /* Removes glow */
    filter: none !important;
}

.static-hero-icon i {
    color: #ffffff !important;
    text-shadow: none !important; /* Removes text glow */
    filter: none !important;
}

.static-hero-title {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    color: #fff !important;
    text-shadow: none !important;
}

.static-hero-subtitle {
    font-size: 14px;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

/* --- DMCA REQUIREMENTS (FIXED ORANGE NUMBERS) --- */
.dmca-requirements {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.dmca-requirement {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: center;
}

/* THE NUMBER BOX - STRICT BLACK & WHITE */
.requirement-number {
    font-size: 20px;
    font-weight: 900;
    
    /* Force Background White, Text Black */
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #000000 !important;
    
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    
    /* Kill any inherited orange borders/shadows */
    border: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.requirement-content h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
}

.requirement-content p {
    margin: 0;
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
}

/* --- ACCORDION (Dropdowns) --- */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    border: 1px solid #222;
    background: #0a0a0a;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    color: #ddd;
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

.accordion-header i {
    color: #fff !important; /* Force Arrow White */
    text-shadow: none !important;
}

.accordion-header:hover {
    background: #111;
    color: #fff;
}

.accordion-body {
    display: none;
    padding: 0 20px 25px;
    border-top: 1px solid #1a1a1a;
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
    animation: fadeIn 0.2s ease;
}

.accordion-item.open .accordion-body { display: block; }
.accordion-item.open .accordion-header { background: #000; color: #fff; }
.accordion-item.open .accordion-header i { transform: rotate(180deg); }

/* --- LISTS (Hollow White Circles) --- */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.legal-list li {
    padding: 6px 0 6px 25px;
    position: relative;
    color: #ccc;
    font-size: 14px;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 13px;
    width: 6px;
    height: 6px;
    border: 1.5px solid #ffffff !important; /* Pure White Border */
    border-radius: 50%;
    background: transparent !important;
    box-shadow: none !important;
}

/* --- FORMS --- */
.static-form {
    background: #0a0a0a;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #222;
}

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 8px;
}

.form-group input, 
.form-group textarea,
.form-group select {
    width: 100%;
    background: #000;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #fff;
    outline: none;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #aaa;
    cursor: pointer;
}
.form-checkbox input { width: 16px; height: 16px; cursor: pointer; accent-color: #fff; }

.btn-static {
    width: 100%;
    background: #fff;
    color: #000;
    border: none;
    padding: 14px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-static:hover { background: #ddd; }
.btn-static:disabled { background: #333; color: #666; cursor: not-allowed; }

/* --- GRIDS --- */
.features-grid, .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.feature-card, .contact-card {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.feature-icon i, .contact-card i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff !important; /* Force White */
    text-shadow: none !important;
}

.contact-card h4, .feature-card h3 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #fff;
    text-transform: uppercase;
}

.contact-card a, .feature-card p {
    color: #888;
    font-size: 13px;
    text-decoration: none;
    line-height: 1.5;
}

.faq-search { position: relative; margin-bottom: 30px; }
.faq-search input { width: 100%; background: #111; border: 1px solid #333; padding: 15px 15px 15px 45px; color: #fff; border-radius: 8px; font-size: 14px; }
.faq-search i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #666 !important; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
