/* layout.css
===== GAMING CONTAINER ===== */
.gaming-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.gaming-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(102, 221, 102, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 170, 0, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(102, 170, 255, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particle-float 15s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* ===== HEADER ===== */
.gaming-header {
    background: linear-gradient(90deg, rgba(26, 26, 30, 0.95), rgba(22, 33, 62, 0.95));
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-green);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-green), #88ff88);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    box-shadow: 0 0 20px rgba(102, 221, 102, 0.4);
    animation: logo-glow 3s ease-in-out infinite alternate;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 10px rgba(102, 221, 102, 0.5);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* ===== FOOTER ===== */
.gaming-footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-top: 2px solid #333;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

.footer-content {
    color: var(--text-muted);
    font-size: 0.9rem;
}
