/* ================================================
   ESPANOLGAMES.ES — HELP
   File: assets/css/help.css
   ================================================ */

/* ===== EXTREME DARK ORANGE THEME - HELP PAGE ===== */
:root {
    --orange-deep: #c81e1e;
    --orange-primary: #ff4400;
    --orange-secondary: #ff7700;
    --orange-gradient: linear-gradient(145deg, #ff4400, #c81e1e);
    --orange-glow: rgba(255, 68, 0, 0.3);
    
    --bg-black: #000000;
    --bg-dark: #050505;
    --bg-card: #0a0a0a;
    --bg-card-hover: #111111;
    --bg-sidebar: #080808;
    
    --border-dim: #1a1a1a;
    --border: #2a2a2a;
    --border-hover: #ff4400;
    
    --text-white: #ffffff;
    --text-light: #f0f0f0;
    --text-dim: #a0a0a0;
    --text-muted: #707070;
    
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.5);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.6);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.7);
    --shadow-orange: 0 5px 25px rgba(255, 68, 0, 0.3);
}

.help-page {
    padding: 50px 0;
    background: var(--bg-black);
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.row {
    display: flex;
    gap: 40px;
}

.col-8 {
    flex: 0 0 calc(66.666% - 20px);
}

.col-4 {
    flex: 0 0 calc(33.333% - 20px);
}

/* ===== PAGE HEADER - EXTREME ===== */
.page-header {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--orange-gradient);
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,68,0,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-header h1 i {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
}

.page-header p {
    color: var(--text-dim);
    font-size: 1.3rem;
}

/* ===== HELP SECTION - EXTREME ===== */
.help-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.help-section:hover {
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-orange);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.section-header i {
    font-size: 28px;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

/* ===== FAQ - EXTREME ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--orange-primary);
}

.faq-question {
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--orange-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover .faq-question::before {
    opacity: 1;
}

.faq-question i {
    color: var(--orange-primary);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-dim);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-answer ol,
.faq-answer ul {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    margin: 10px 0;
}

.faq-link {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-link:hover {
    color: var(--orange-secondary);
    text-decoration: underline;
}

/* ===== GUIDE - EXTREME ===== */
.guide-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.guide-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 45px;
    height: 45px;
    background: var(--orange-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-orange);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.optional-badge {
    background: rgba(255, 68, 0, 0.2);
    border: 1px solid var(--orange-primary);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--orange-primary);
}

.step-content p {
    color: var(--text-dim);
    line-height: 1.7;
}

/* ===== SIDEBAR WIDGETS - EXTREME ===== */
.sidebar-widget {
    background: var(--bg-sidebar);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-orange);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.widget-header i {
    font-size: 22px;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link i:first-child {
    color: var(--orange-primary);
    font-size: 18px;
    transition: all 0.3s ease;
}

.quick-link span {
    flex: 1;
    font-weight: 500;
}

.quick-link i:last-child {
    font-size: 14px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: var(--bg-card-hover);
    border-color: var(--orange-primary);
    color: var(--text-white);
}

.quick-link:hover i:first-child {
    color: var(--orange-secondary);
}

.quick-link:hover i:last-child {
    opacity: 1;
    transform: translateX(0);
    color: var(--orange-primary);
}

/* ===== SUPPORT WIDGET - EXTREME ===== */
.support-widget {
    background: linear-gradient(145deg, rgba(255,68,0,0.05), transparent);
    border: 1px solid var(--orange-primary);
}

.support-widget .widget-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-widget p {
    color: var(--text-dim);
    line-height: 1.6;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--orange-gradient);
    border: none;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 68, 0, 0.5);
}

.btn-block {
    width: 100%;
}

.support-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-card);
    border-radius: 12px;
    color: var(--text-dim);
    font-size: 13px;
}

.support-hours i {
    color: var(--orange-primary);
}

/* ===== POPULAR TERMS - EXTREME ===== */
.popular-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.term-tag {
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s ease;
}

.term-tag:hover {
    background: var(--orange-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .container { padding: 0 20px; }
    .page-header h1 { font-size: 2.5rem; }
    .page-header h1 i { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
        gap: 30px;
    }
    
    .col-8,
    .col-4 {
        flex: 0 0 100%;
    }
    
    .page-header {
        padding: 40px 20px;
    }
    
    .page-header h1 {
        font-size: 2rem;
        flex-direction: column;
    }
    
    .page-header h1 i {
        font-size: 2.2rem;
    }
    
    .help-section {
        padding: 25px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .guide-step {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 14px;
    }
    
    .quick-link {
        padding: 12px;
    }
}