:root {
    --royal-purple: #2e0249;
    --deep-purple: #1a002b;
    --luxury-gold: #ffd700;
    --gold-hover: #ffed4a;
    --text-light: #f3e5f5;
    --text-muted: #b39ddb;
    --card-bg: rgba(46, 2, 73, 0.8);
    --glass-border: rgba(255, 215, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif; /* Editorial font */
}

body {
    background-color: var(--deep-purple);
    color: var(--text-light);
    line-height: 1.8; /* Improved readability for long text */
    font-family: 'Lato', sans-serif; /* Body font */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Editorial Layout Structure */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(26, 0, 43, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--luxury-gold);
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    font-size: 1.1rem;
    color: var(--text-light);
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--luxury-gold);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(45deg, #ffd700, #ffaa00);
    color: var(--deep-purple);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(26, 0, 43, 0.6), rgba(26, 0, 43, 0.8)), url('images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 40px;
    background: rgba(26, 0, 43, 0.7);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* Editorial Content Sections */
.article-section {
    padding: 80px 0;
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.article-grid.reverse {
    direction: rtl; /* Visual reverse */
}

.article-grid.reverse .article-text {
    direction: ltr; /* Reset text direction */
}

.article-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.article-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.article-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.read-more {
    color: var(--luxury-gold);
    font-weight: 700;
    border-bottom: 1px solid var(--luxury-gold);
    padding-bottom: 2px;
}

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.game-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: #0f001a;
    padding: 60px 0 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--luxury-gold);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--luxury-gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Simplify for mobile */
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
