/* JL Boss - Main Stylesheet */
/* Mobile-first responsive design with casino theme */

/* Root variables and reset */
:root {
    --primary-bg: #0C0C0C;
    --primary-text: #F5F5F5;
    --accent-gold: #FFE4B5;
    --hover-gold: #F4D03F;
    --gradient-gold: linear-gradient(135deg, #FFE4B5 0%, #F4D03F 100%);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --shadow-light: rgba(255, 255, 255, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: var(--primary-bg);
    color: var(--primary-text);
    line-height: 1.5;
    font-size: 1.4rem;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.4rem;
    color: var(--accent-gold);
    text-shadow: 2px 2px 4px var(--shadow-dark);
}

h2 {
    font-size: 2rem;
    color: var(--accent-gold);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5rem;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--hover-gold);
    text-shadow: 0 0 5px rgba(255, 228, 181, 0.5);
}

/* Layout containers */
.container {
    max-width: 43rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 2rem 0;
    margin-bottom: 1rem;
}

.grid {
    display: grid;
    gap: 1rem;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, var(--primary-bg) 0%, rgba(12, 12, 12, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 228, 181, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 43rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
}

.site-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-gold);
    text-shadow: 1px 1px 2px var(--shadow-dark);
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn {
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    min-height: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-bg);
    box-shadow: 0 2px 8px rgba(255, 228, 181, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 228, 181, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-bg);
}

.burger-menu {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0.8rem;
    cursor: pointer;
    border: none;
    background: transparent;
}

.burger-line {
    width: 2.4rem;
    height: 3px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Menu */
.mobile-nav {
    position: fixed;
    top: 7rem;
    left: 0;
    width: 100%;
    background: var(--primary-bg);
    border-bottom: 1px solid rgba(255, 228, 181, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav ul {
    list-style: none;
    padding: 1rem;
}

.mobile-nav li {
    margin-bottom: 0.5rem;
}

.mobile-nav a {
    display: block;
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mobile-nav a:hover {
    background: rgba(255, 228, 181, 0.1);
}

/* Main content */
.main-content {
    padding-top: 8rem;
    min-height: 100vh;
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    height: 20rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.carousel-indicator {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicator.active {
    background: var(--accent-gold);
}

/* Game sections */
.game-section {
    margin-bottom: 3rem;
}

.game-category-title {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.game-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 228, 181, 0.2);
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    min-height: 4.4rem;
}

.game-item:hover {
    background: rgba(255, 228, 181, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.game-item img {
    width: 4rem;
    height: 4rem;
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
}

.game-name {
    font-size: 1rem;
    color: var(--primary-text);
    font-weight: bold;
}

/* Content modules */
.content-module {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 228, 181, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.module-title {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.promo-link {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-bg);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: bold;
    margin: 0.5rem 0.5rem 0.5rem 0;
    transition: var(--transition);
    min-height: 4.4rem;
    text-align: center;
    cursor: pointer;
}

.promo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 228, 181, 0.4);
    color: var(--primary-bg);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 228, 181, 0.2);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 43rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--accent-gold);
    font-weight: bold;
    transition: var(--transition);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.partner-logo {
    width: 100%;
    height: 3rem;
    object-fit: contain;
    filter: grayscale(50%);
    transition: var(--transition);
}

.partner-logo:hover {
    filter: grayscale(0%);
}

.copyright {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(245, 245, 245, 0.6);
    margin-top: 2rem;
}

/* Bottom navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-bg);
    border-top: 1px solid rgba(255, 228, 181, 0.2);
    z-index: 1000;
    padding: 0.5rem 0;
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 43rem;
    margin: 0 auto;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem;
    color: var(--primary-text);
    transition: var(--transition);
    min-height: 4.4rem;
    justify-content: center;
}

.bottom-nav-item:hover {
    color: var(--accent-gold);
}

.bottom-nav-item i {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.bottom-nav-item span {
    font-size: 1rem;
}

/* Form elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    font-weight: bold;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 228, 181, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-text);
    font-size: 1.4rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 5px rgba(255, 228, 181, 0.3);
}

.form-input.error {
    border-color: #ff6b6b;
    box-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ specific styles */
.faq-item {
    border-bottom: 1px solid rgba(255, 228, 181, 0.2);
    padding: 1.5rem 0;
}

.faq-question {
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.faq-answer {
    line-height: 1.6;
}

/* RTP Analysis styles */
.rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.rtp-item {
    background: rgba(255, 228, 181, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.rtp-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-gold);
}

/* Responsive adjustments */
@media (max-width: 380px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .game-item img {
        width: 3rem;
        height: 3rem;
    }
    
    .game-name {
        font-size: 0.9rem;
    }
}

@media (min-width: 430px) {
    .container {
        max-width: 43rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.flex { display: flex; }
.grid { display: grid; }

/* Print styles */
@media print {
    .header, .bottom-nav, .carousel-container {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .main-content {
        padding-top: 0;
    }
} 