/*
Theme Name: Casino Compare V2
Theme URI:
Description: Casino comparison theme — TnBet-inspired dark design
Version: 1.0.0
Text Domain: casino-compare-v2
*/

/* =====================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ===================================================== */
:root {
    /* Background */
    --color-bg:          #0f172b;
    --color-card:        #1e293b;
    --color-card-header: #334155;

    /* Accent */
    --color-accent:      #10b981;
    --color-accent-hover:#059669;

    /* Text */
    --color-text:        #f8fafc;
    --color-text-soft:   #94a3b8;
    --color-text-muted:  #64748b;

    /* Border */
    --color-border:      #334155;

    /* Semantic */
    --color-danger:      #ef4444;
    --color-stars:       #eab308;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Shell */
    --shell-max: 1152px;
    --shell-pad: 24px;
}

/* =====================================================
   BASE RESET
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
}
