/* ================================================
   ESPANOLGAMES.ES — REQUIREMENTS
   File: assets/css/requirements.css
   ================================================ */

/* ===== EXTREME DARK ORANGE THEME - REQUIREMENTS 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;
    
    --success: #00c853;
    --warning: #ffc107;
    --danger: #ff3d00;
    --info: #2196f3;
    
    --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);
}

.requirements-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;
}

/* ===== INFO CARD - EXTREME ===== */
.info-card {
    background: linear-gradient(145deg, rgba(255,68,0,0.1), rgba(199,30,30,0.05));
    border: 1px solid var(--orange-primary);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    display: flex;
    gap: 25px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-orange);
}

.info-icon {
    font-size: 50px;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.info-content p {
    color: var(--text-dim);
    margin-bottom: 15px;
}

.info-content ol {
    margin: 15px 0 0 20px;
}

.info-content li {
    color: var(--text-light);
    margin: 10px 0;
}

kbd {
    background: var(--bg-card-hover);
    color: var(--orange-primary);
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid var(--orange-primary);
    font-family: monospace;
    font-size: 14px;
}

code {
    background: var(--bg-card-hover);
    color: var(--orange-secondary);
    padding: 4px 10px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 14px;
    border: 1px solid var(--border);
}

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

.requirements-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;
}

/* ===== COMPONENT CARD - EXTREME ===== */
.component-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

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

.component-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
}

.component-body {
    padding: 25px;
}

.spec-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-dim);
}

.spec-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.spec-tag {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.spec-tag.recommended {
    background: var(--orange-gradient);
    color: white;
}

.spec-tag.minimum {
    background: rgba(255, 68, 0, 0.2);
    border: 1px solid var(--orange-primary);
    color: var(--orange-primary);
}

.spec-tag.acceptable {
    background: rgba(33, 150, 243, 0.2);
    border: 1px solid #2196f3;
    color: #64b5f6;
}

.spec-value {
    color: var(--text-light);
    font-weight: 500;
}

.spec-tier {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-card-hover);
    border-radius: 12px;
}

.tier-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.tier-badge.ultra {
    background: linear-gradient(145deg, #ff6b6b, #c81e1e);
    color: white;
}

.tier-badge.high {
    background: linear-gradient(145deg, #ffa500, #ff4400);
    color: white;
}

.tier-badge.medium {
    background: linear-gradient(145deg, #4caf50, #2e7d32);
    color: white;
}

.tier-badge.low {
    background: linear-gradient(145deg, #42a5f5, #1565c0);
    color: white;
}

.tier-value {
    color: var(--text-light);
    line-height: 1.6;
}

.gpu-list {
    color: var(--text-dim);
    margin-top: 8px;
    line-height: 1.8;
}

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

.component-tip {
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.component-tip i {
    color: #ffc107;
    font-size: 20px;
}

.component-tip span {
    color: var(--text-dim);
    line-height: 1.6;
}

/* ===== PERFORMANCE GRID - EXTREME ===== */
.performance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.performance-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.performance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.performance-card.ultra::before {
    background: linear-gradient(145deg, #ff6b6b, #c81e1e);
}

.performance-card.high::before {
    background: linear-gradient(145deg, #ffa500, #ff4400);
}

.performance-card.medium::before {
    background: linear-gradient(145deg, #4caf50, #2e7d32);
}

.performance-card.low::before {
    background: linear-gradient(145deg, #42a5f5, #1565c0);
}

.performance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-orange);
}

.performance-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.performance-card.ultra .performance-badge {
    background: linear-gradient(145deg, #ff6b6b, #c81e1e);
    color: white;
}

.performance-card.high .performance-badge {
    background: linear-gradient(145deg, #ffa500, #ff4400);
    color: white;
}

.performance-card.medium .performance-badge {
    background: linear-gradient(145deg, #4caf50, #2e7d32);
    color: white;
}

.performance-card.low .performance-badge {
    background: linear-gradient(145deg, #42a5f5, #1565c0);
    color: white;
}

.performance-card h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.performance-card p {
    color: var(--text-dim);
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.performance-card ul {
    list-style: none;
    padding: 0;
}

.performance-card li {
    color: var(--text-light);
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.performance-card li i {
    color: var(--orange-primary);
    width: 20px;
}

/* ===== 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-tools {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tool-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

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

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

.tool-info {
    flex: 1;
}

.tool-info strong {
    display: block;
    color: var(--text-white);
    margin-bottom: 6px;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-item {
    padding: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.spec-value {
    font-size: 16px;
    font-weight: 700;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-dim);
    color: var(--text-dim);
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li i {
    color: var(--success);
    font-size: 16px;
}

.cta-widget {
    background: linear-gradient(145deg, rgba(255,68,0,0.1), transparent);
    border: 1px solid var(--orange-primary);
    text-align: center;
}

.cta-widget .widget-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

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

.cta-widget h4 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin: 0;
}

.cta-widget p {
    color: var(--text-dim);
}

.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%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .container { padding: 0 25px; }
}

@media (max-width: 992px) {
    .container { padding: 0 20px; }
    .page-header h1 { font-size: 2.5rem; }
    .page-header h1 i { font-size: 2.8rem; }
    .performance-grid { grid-template-columns: 1fr; }
}

@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;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .component-header {
        flex-direction: column;
        text-align: center;
    }
    
    .spec-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .spec-tag {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .requirements-section {
        padding: 25px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .component-body {
        padding: 20px;
    }
}