/*
Theme Name: Bass Bets
Theme URI: https://www.bassbet.com/
Author: Elite WP Dev
Author URI: https://www.bassbet.com/
Description: A minimalist, high-conversion WordPress theme designed for direct online casino brands. Clean, trustworthy, and laser-focused on driving player registrations.
Version: 1.0.0
License: GPL v2 or later
Text Domain: bass-bets
*/

/* ==================== CSS CUSTOM PROPERTIES (DESIGN SYSTEM) ==================== */
:root {
    /* Colors */
    --color-bg-primary: #0a0e17;
    --color-bg-secondary: #131827;
    --color-bg-card: #1a1f2e;
    --color-text-primary: #ffffff;
    --color-text-secondary: #b0b7c9;
    --color-accent-neon: #00ff9d;
    --color-accent-blue: #00b8ff;
    --color-border: #2a3146;
    /* Typography */
    --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.5rem;
    --text-2xl: 2rem;
    --text-3xl: 3rem;
    --text-4xl: 4rem;
    /* Spacing */
    --space-unit: 1rem;
    --space-xs: calc(var(--space-unit) * 0.5);
    --space-sm: calc(var(--space-unit) * 0.75);
    --space-md: var(--space-unit);
    --space-lg: calc(var(--space-unit) * 1.5);
    --space-xl: calc(var(--space-unit) * 2);
    --space-2xl: calc(var(--space-unit) * 3);
    /* Effects */
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-button: 0 0 20px rgba(0, 255, 157, 0.5);
    --transition-fast: 200ms ease;
    --transition-slow: 400ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    overflow-x: hidden;
}

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

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

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

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

p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
}

/* ==================== BUTTONS ==================== */
.button {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-lg);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.button-primary {
    background-color: var(--color-accent-neon);
    color: var(--color-bg-primary);
    box-shadow: var(--shadow-button);
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.8);
}

.button-secondary {
    background-color: transparent;
    color: var(--color-accent-blue);
    border: 2px solid var(--color-accent-blue);
}

.button-secondary:hover {
    background-color: var(--color-accent-blue);
    color: var(--color-bg-primary);
}

/* ==================== 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-logo a {
    font-size: var(--text-2xl);
    font-weight: 900;
    color: var(--color-accent-blue);
}

.header-cta .button {
    padding: var(--space-sm) var(--space-lg);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(10, 14, 23, 0.85), rgba(10, 14, 23, 0.95)), url('https://images.unsplash.com/photo-1531895861208-8504f429c2d1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center / cover;
    animation: fadeIn 1s var(--transition-slow);
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
    background: linear-gradient(90deg, var(--color-accent-neon), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2xl);
    color: var(--color-text-secondary);
}

/* ==================== FEATURE CARDS ==================== */
.feature-section {
    padding: var(--space-2xl) 0;
}

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

.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

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

@media (min-width: 1024px) {
    .game-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.game-card {
    background-color: var(--color-bg-card);
    border-radius: 12px;
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-fast);
}

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

.game-card i {
    font-size: 3rem;
    color: var(--color-accent-blue);
    margin-bottom: var(--space-sm);
}

.game-card h3 {
    font-size: var(--text-lg);
    margin-bottom: 0;
}

/* ==================== PAYMENT METHODS ==================== */
.payment-section {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--color-border);
}

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

.payment-item {
    background-color: var(--color-bg-card);
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.payment-item img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

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

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-disclaimer {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-links a:hover {
    color: var(--color-accent-blue);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 767px) {
    :root {
        --text-4xl: 2.5rem;
        --text-3xl: 2rem;
        --text-2xl: 1.75rem;
    }
    .game-grid {
        grid-template-columns: 1fr;
    }
    .payment-grid {
        gap: var(--space-md);
    }
    .payment-item {
        width: 70px;
        height: 70px;
    }
}
