/* ================================================
   ESPANOLGAMES.ES — STATIC-PAGES
   File: assets/css/static-pages.css
   ================================================ */

/* ===== EXTREME DARK ORANGE - DMCA 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: #2a2a2a;
    --border-hover: #ff4400;
    
    --text-white: #ffffff;
    --text-light: #f0f0f0;
    --text-dim: #a0a0a0;
    --text-muted: #707070;
    
    --shadow-orange: 0 5px 25px rgba(255, 68, 0, 0.3);
}

.dmca-page {
    background: var(--bg-black);
    min-height: 100vh;
}

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

/* ===== HERO SECTION ===== */
.page-hero {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 60px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

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

.page-hero::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 25s linear infinite;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    color: var(--text-dim);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--orange-primary);
}

.hero-badge {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.badge-pulse {
    background: var(--orange-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.badge-updated {
    background: rgba(255, 68, 0, 0.1);
    border: 1px solid var(--orange-primary);
    color: var(--orange-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-content h1 i {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-dim);
    max-width: 700px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.highlight {
    color: var(--orange-primary);
    font-weight: 700;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-dim);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== LEGAL GRID ===== */
.legal-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

/* ===== LEGAL CARDS ===== */
.legal-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
}

.header-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 68, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon i {
    font-size: 28px;
    color: var(--orange-primary);
}

.card-header h2 {
    color: var(--text-white);
    font-size: 1.6rem;
    margin: 0;
}

.subtitle {
    color: var(--text-dim);
    margin-top: 5px;
}

.card-body {
    padding: 30px;
}

/* ===== REQUIREMENTS GRID ===== */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.requirement-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
}

.requirement-item:hover {
    border-color: var(--orange-primary);
    transform: translateX(5px);
}

.requirement-icon i {
    font-size: 24px;
    color: var(--orange-primary);
}

.requirement-content h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 6px;
}

.requirement-content p {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.5;
}

/* ===== INFO BOXES ===== */
.info-box {
    display: flex;
    gap: 18px;
    padding: 20px;
    border-radius: 16px;
    margin: 20px 0;
}

.info-box-warning {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
}

.info-box-info {
    background: rgba(33, 150, 243, 0.1);
    border-left: 4px solid #2196f3;
}

.info-box i {
    font-size: 24px;
}

.info-box-warning i {
    color: #ffc107;
}

.info-box-info i {
    color: #2196f3;
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question i {
    color: var(--orange-primary);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    padding-left: 32px;
    color: var(--text-dim);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 18px;
}

/* ===== SIDEBAR CARDS ===== */
.sidebar-card {
    background: var(--bg-sidebar);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
}

.agent-card {
    background: linear-gradient(145deg, rgba(255,68,0,0.1), var(--bg-sidebar));
    border: 1px solid var(--orange-primary);
}

.agent-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--orange-gradient);
    border-radius: 50px;
    color: white;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.agent-info {
    margin: 25px 0;
}

.agent-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.agent-detail i {
    width: 24px;
    color: var(--orange-primary);
}

.detail-label {
    display: block;
    color: var(--text-dim);
    font-size: 12px;
}

.detail-value {
    display: block;
    color: var(--text-white);
    font-weight: 600;
}

.btn-agent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: var(--orange-gradient);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-agent:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

.template-preview {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
}

.template-preview pre {
    color: var(--text-dim);
    font-family: monospace;
    line-height: 1.6;
    white-space: pre-wrap;
}

.btn-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-copy:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@media (max-width: 1200px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container { padding: 20px; }
    .page-hero { padding: 40px 20px; }
    .hero-content h1 { font-size: 2.5rem; }
    .requirements-grid { grid-template-columns: 1fr; }
}