/**
 * Page CSS — auto-extracted from resources/views/games/articles/_base.blade.php
 * 
 * @auto-generated 2026-06-11
 * @source resources/views/games/articles/_base.blade.php
 * 
 * Loaded via @stack('page-css') in layouts/app.blade.php
 */

.game-article {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-tagline {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-overview {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.article-section {
    margin-bottom: 3rem;
}

.article-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.article-section-title i {
    color: var(--primary-blue);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.9));
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* How to Play Steps */
.steps-list {
    counter-reset: step;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Tips List */
.tips-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(245, 196, 0, 0.08);
    border-radius: 8px;
    border-left: 3px solid var(--accent-cyan);
}

.tip-item i {
    color: var(--accent-cyan);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.tip-item span {
    color: var(--text-muted);
    line-height: 1.5;
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.info-table th,
.info-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
}

.info-table th {
    background: rgba(225, 6, 0, 0.1);
    color: var(--text-light);
    font-weight: 600;
}

.info-table td {
    color: var(--text-muted);
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Heat/Level Badge */
.level-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.level-badge.perfect { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
.level-badge.scorching { background: rgba(239, 68, 68, 0.2); color: #ef4444; }
.level-badge.hot { background: rgba(249, 115, 22, 0.2); color: #f97316; }
.level-badge.toasty { background: rgba(245, 158, 11, 0.2); color: #f59e0b; }
.level-badge.warm { background: rgba(234, 179, 8, 0.2); color: #eab308; }
.level-badge.cool { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
.level-badge.chilly { background: rgba(99, 102, 241, 0.2); color: #6366f1; }
.level-badge.frozen { background: rgba(147, 197, 253, 0.2); color: #93c5fd; }

/* Game Modes */
.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.mode-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1.25rem;
}

.mode-card h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mode-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Supported Platforms */
.platforms-section {
    background: linear-gradient(135deg, rgba(225, 6, 0, 0.08), rgba(245, 196, 0, 0.08));
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.platforms-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.platforms-subtitle {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.platforms-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: 30px;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.platform-badge:hover {
    border-color: var(--primary-blue);
    background: rgba(225, 6, 0, 0.15);
}

.platform-badge i {
    font-size: 1.25rem;
}

.platform-badge.tiktok i { color: #00f2ea; }
.platform-badge.youtube i { color: #ff0000; }
.platform-badge.twitch i { color: #9146ff; }
.platform-badge.kick i { color: #53fc18; }

/* Responsive */
@media (max-width: 768px) {
    .game-article {
        padding: 2rem 1rem;
    }

    .article-tagline {
        font-size: 1.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .step-item {
        flex-direction: column;
        gap: 1rem;
    }

    .platforms-grid {
        gap: 0.75rem;
    }

    .platform-badge {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}
