* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --primary-gold: #FFD700;
    --primary-red: #D40000;
    --dark-bg: #050505;
    --card-bg: #111111;
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
    --gradient-red: linear-gradient(135deg, #FF0000 0%, #990000 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%)
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    background-image: radial-gradient(circle at 10% 20%, rgba(212, 0, 0, 0.1) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 20%)
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3)
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2rem;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease
}

.back-link:hover {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-gold);
    transform: translateX(-5px)
}

.article-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
    text-transform: uppercase;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5)
}

.article-meta {
    color: var(--text-gray);
    font-size: 1rem;
    font-style: italic
}

.featured-image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16/9;
    object-fit: contain;
    background: #000;
    border-radius: 15px;
    margin: 30px auto;
    display: block;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8)
}

.article-content {
    background: #111;
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5)
}

.article-content h2 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 10px
}

.article-content h2:first-child {
    margin-top: 0
}

.article-content h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-top: 30px;
    margin-bottom: 15px
}

.article-content p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.8
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px
}

.article-content li {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 10px;
    line-height: 1.8
}

.article-content strong {
    color: var(--primary-gold);
    font-weight: 600
}

.highlight-box {
    background: rgba(212, 0, 0, 0.1);
    border-left: 4px solid var(--primary-red);
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px
}

.highlight-box p {
    margin-bottom: 0;
    color: #fff
}

.faq-section {
    margin-top: 50px
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease
}

.faq-item:hover {
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.05)
}

.faq-question {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-weight: 600
}

.faq-answer {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1)
}

.cta-section h2 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-transform: uppercase
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: var(--gradient-red);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5)
}

.cta-button:hover {
    background: var(--gradient-gold);
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4)
}

.related-games {
    margin-top: 60px
}

.related-games h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-white);
    text-transform: uppercase
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px
}

.related-card {
    background: #111;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
    background: rgba(255, 215, 0, 0.05)
}

.related-card-name {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600
}

footer {
    background-color: #000;
    padding: 40px 20px;
    margin-top: 50px;
    border-top: 1px solid #222
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease
}

.footer-links a:hover {
    color: var(--primary-gold)
}

.copyright {
    color: #555;
    font-size: 0.8rem
}

@media (max-width:768px) {
    .article-title {
        font-size: 2rem
    }

    .article-content {
        padding: 25px
    }

    .article-content h2 {
        font-size: 1.5rem
    }

    .article-content h3 {
        font-size: 1.2rem
    }

    .article-content p,
    .article-content li {
        font-size: 1rem
    }

    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr))
    }
}