/*
Theme Name: Monqi Games
Description: A premium, high-performance dark-mode gaming portal built for speed, heavy API integration, and easy flipping.
Author: Admin
Version: 1.0.0
Text Domain: monqigames
*/

/* ==========================================================================
   1. CSS VARIABLES (EASY REBRANDING)
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-main: #0b0f19;          /* Deep dark blue/black background */
    --bg-card: #151b2b;          /* Slightly lighter for cards */
    --accent-primary: #00e676;   /* Neon gamer green */
    --accent-hover: #00c853;     /* Darker green for hover states */
    --text-main: #e2e8f0;        /* Off-white for readability */
    --text-muted: #94a3b8;       /* Slate gray for secondary text */
    --border-color: #1e293b;     /* Subtle borders */

    /* Typography & Spacing */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition-speed: 0.3s;
}

/* ==========================================================================
   2. BASE STYLES & RESETS
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    border-left: 4px solid var(--accent-primary);
    padding-left: 15px;
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

/* ==========================================================================
   4. COMPONENT GRIDS (Games, Twitch, YouTube, Amazon)
   ========================================================================== */
/* We supplement the inline grid styles from the shortcodes here */
.games-grid,
.twitch-streams-grid,
.youtube-streams-grid,
.amazon-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* ==========================================================================
   5. CARD DESIGNS (Hover Effects & Polish)
   ========================================================================== */
.twitch-stream-card,
.youtube-stream-card,
.deal-card {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

/* Premium Hover Lift Effect */
.twitch-stream-card:hover,
.youtube-stream-card:hover,
.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-primary) !important;
}

/* Image styling inside cards */
.twitch-stream-card img,
.youtube-stream-card img,
.deal-card img {
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    transition: opacity var(--transition-speed) ease;
}

.twitch-stream-card:hover img,
.youtube-stream-card:hover img,
.deal-card:hover img {
    opacity: 0.9;
}

/* Card Typography Adjustments */
.twitch-stream-card h4,
.youtube-stream-card h4,
.deal-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px !important;
    text-transform: none; /* Keep titles readable */
}

.twitch-stream-card p,
.youtube-stream-card p {
    color: var(--text-muted) !important;
    font-size: 0.9rem !important;
}

/* ==========================================================================
   6. DEAL ENGINE SPECIFICS (Amazon / eBay)
   ========================================================================== */
.deal-card {
    text-align: left !important;
    position: relative;
}

.deal-card .price {
    color: var(--accent-primary) !important; /* Overrides the dark red for dark mode */
    font-size: 1.4rem !important;
    font-weight: 800;
    margin-bottom: 15px !important;
}

.deal-card .buy-btn {
    display: block;
    background-color: var(--accent-primary) !important;
    color: var(--bg-main) !important;
    text-align: center;
    padding: 10px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-transform: uppercase;
    margin-top: auto; /* Pushes button to the bottom */
}

.deal-card .buy-btn:hover {
    background-color: var(--accent-hover) !important;
}

/* ==========================================================================
   7. RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .games-grid,
    .twitch-streams-grid,
    .youtube-streams-grid,
    .amazon-deals-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 15px;
    }
}