/*
Theme Name: casiniaaa
Theme URI: https://www.casinia.com/
Author: Casinia Team
Author URI: https://www.casinia.com/
Description: Minimalist high-conversion WordPress theme for online casino
Version: 1.0.0
Text Domain: casiniaaa
Domain Path: /languages
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button, input, textarea {
    font-family: inherit;
}

/* === DESIGN SYSTEM === */
:root {
    /* Colors */
    --color-bg: #0a0e17;
    --color-bg-light: #141b2d;
    --color-text: #ffffff;
    --color-text-muted: #8a93a7;
    --color-primary: #00ff9d;
    --color-primary-dark: #00cc7d;
    --color-secondary: #00a3ff;
    --color-accent: #ff00aa;
    --color-border: #2a3245;
    
    /* Typography */
    --font-heading: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    --font-body: Arial, Helvetica, sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 4rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 20px rgba(0, 255, 157, 0.4);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--text-base);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.2;
}

h1 {
    font-size: var(--text-4xl);
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-2xl);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* === STICKY HEADER (PLAY BAR) === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    font-size: var(--text-2xl);
    font-weight: 900;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-logo span {
    color: var(--color-primary);
}

.primary-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-bg);
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-full);
    font-weight: 900;
    font-size: var(--text-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    animation: pulse 2s infinite;
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: var(--shadow-glow);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 255, 157, 0.7);
    }
}

/* === HERO SECTION === */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(10, 14, 23, 0.85), rgba(10, 14, 23, 0.95)), url('https://images.unsplash.com/photo-1533105079780-92b9be482077?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-lg);
    color: var(--color-text);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: var(--text-xl);
    margin-bottom: var(--space-xl);
    color: var(--color-text-muted);
}

.hero-cta {
    font-size: var(--text-xl);
    padding: var(--space-md) var(--space-2xl);
}

/* === CONTENT BLOCKS === */
.content-section {
    padding: var(--space-3xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: var(--color-text);
}

/* Game Categories Grid */
.game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.category-card {
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

.category-title {
    font-size: var(--text-lg);
    color: var(--color-text);
}

/* Payment Methods */
.payment-methods {
    background-color: var(--color-bg-light);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
}

.payment-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--color-text-muted);
    font-size: var(--text-lg);
}

.payment-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.payment-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}

/* === MINIMAL FOOTER === */
.site-footer {
    background-color: var(--color-bg-light);
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--color-border);
    margin-top: var(--space-3xl);
}

.footer-content {
    text-align: center;
}

.warning-text {
    color: var(--color-accent);
    font-weight: 900;
    margin-bottom: var(--space-md);
    font-size: var(--text-lg);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-md);
}

.footer-link {
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-primary);
}

.copyright {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 767px) {
    h1 {
        font-size: var(--text-3xl);
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .game-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-grid {
        gap: var(--space-md);
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .game-categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: var(--text-6xl);
    }
    
    .game-categories {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }