/* hoki69/css/style.css */

/* Custom Tailwind configuration & additional CSS */
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1A1A2E; /* Dark Blue */
    --accent-color: #00BFFF; /* Deep Sky Blue */
    --text-color: #E0E0E0; /* Light Gray */
    --bg-dark: #0F0F1A; /* Very Dark Blue */
    --glow-effect: 0 0 15px var(--primary-color);
}

body {
    font-family: 'Oxanium', sans-serif; /* Gaming-inspired font */
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll due to animations */
}

.gradient-bg {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.75rem;
    border-radius: 9999px; /* Pill shape */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: var(--glow-effect);
}

.btn-primary:hover {
    background-color: #FFEA00; /* Lighter gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--primary-color);
}

.section-title {
    font-family: 'Orbitron', sans-serif; /* More impactful font for titles */
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: var(--glow-effect);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.card-game {
    background-color: var(--secondary-color);
    border: 2px solid var(--accent-color);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.card-game:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 20px var(--accent-color);
}

.card-game img {
    max-width: 80px;
    margin: 0 auto 1rem;
}

.card-promo {
    background-color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.card-promo:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px var(--primary-color);
}

.glow-text {
    text-shadow: var(--glow-effect);
}

.animated-hero {
    position: relative;
    overflow: hidden;
}

/* Simple animation for background particles/elements */
.animated-hero::before, .animated-hero::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
    animation: moveParticles 20s infinite alternate ease-in-out;
    z-index: 0;
}
.animated-hero::before {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}
.animated-hero::after {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 10%;
    animation-delay: 5s;
}

@keyframes moveParticles {
    0% { transform: translate(0, 0) scale(1); opacity: 0.05; }
    50% { transform: translate(20px, 30px) scale(1.2); opacity: 0.1; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.05; }
}

/* Responsive Navbar */
.navbar-menu {
    display: none;
}

@media (min-width: 768px) {
    .navbar-menu {
        display: flex;
    }
    .hamburger-menu {
        display: none;
    }
}