/* Reset és alapbeállítások */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Színek */
    --primary-dark: #1A237E;
    --primary-gold: #F9A825;
    --accent-gold: #FFB300;
    --accent-purple: #6A1B9A;
    --white: #FFFFFF;
    --black: #000000;
    --gray-light: #F5F5F5;
    --gray-dark: #424242;
    
    /* Gradiens */
    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gold) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, #FFD54F 100%);
    --gradient-purple: linear-gradient(135deg, var(--accent-purple) 0%, #9C27B0 100%);
    
    /* Árnyékok */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(255, 179, 0, 0.3);
    --shadow-mystic: 0 8px 32px rgba(106, 27, 154, 0.2);
    
    /* Átmenetek */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    background: var(--gradient-primary);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Container Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 179, 0, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary-dark);
    border-bottom: 2px solid var(--accent-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo */
.logo a {
    text-decoration: none;
    color: var(--white);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--accent-gold);
}

/* Desktop Navigation */
.nav-desktop ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-desktop a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-desktop a:hover {
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu nav a {
    display: block;
    padding: 1rem 2rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.mobile-menu nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        padding: 0.75rem 0;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-play-now {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-play-now::before {
    content: '';
    position: absolute;
 top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-medium);
}

.btn-play-now:hover::before {
    left: 100%;
}

.btn-play-now:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 179, 0, 0.5);
}

.btn-icon {
    font-size: 1.1rem;
}

.btn-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-medium);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 179, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--accent-purple);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--accent-purple);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.7) 0%, rgba(106, 27, 154, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-purple);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-mystic);
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 179, 0, 0.5);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.hero-disclaimer {
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-gold);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--white);
}

.hero-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.age-icon {
    background: var(--accent-gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.banner-icon {
    height: 40px;
    width: auto;
    transition: var(--transition-fast);
}

.banner-icon:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Features Section */
.features {
    padding: 5rem 0;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

.features-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.features-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-mystic);
    border-color: var(--accent-gold);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.feature-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
}

/* Game Preview Section */
.game-preview {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
}

.game-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.game-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.game-demo {
    max-width: 800px;
    margin: 0 auto;
}

/* Enhanced Slot Machine Styles */
.slot-machine {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: var(--shadow-mystic);
    border: 2px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.slot-machine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 179, 0, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-gold);
}

.game-title h3 {
    color: var(--accent-gold);
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 179, 0, 0.5);
}

.game-title p {
    color: var(--white);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.game-stats {
    display: flex;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 179, 0, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-bottom: 0.3rem;
    opacity: 0.8;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.slot-display {
    position: relative;
    margin-bottom: 2rem;
}

.win-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.win-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.line-1 { top: 33.33%; left: 0; right: 0; }
.line-2 { top: 50%; left: 0; right: 0; }
.line-3 { top: 66.67%; left: 0; right: 0; }

.win-line.active {
    opacity: 1;
    animation: winLineGlow 1s ease-in-out;
}

@keyframes winLineGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.slot-reels {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 3px solid var(--accent-gold);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.reel {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 10px;
    min-width: 60px;
    border: 1px solid rgba(255, 179, 0, 0.2);
}

.symbol {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 8px;
    transition: var(--transition-fast);
    cursor: default;
    user-select: none;
    border: 2px solid rgba(255, 179, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.symbol svg {
    width: 30px;
    height: 30px;
    color: var(--accent-gold);
    filter: drop-shadow(0 0 5px rgba(255, 179, 0, 0.5));
}

.symbol::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 179, 0, 0.2), transparent);
    transition: var(--transition-medium);
}

.symbol:hover::before {
    left: 100%;
}

.symbol.winning {
    animation: symbolWin 0.6s ease-in-out;
    background: var(--gradient-gold);
    transform: scale(1.2);
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(255, 179, 0, 0.6);
}

.symbol.winning svg {
    color: var(--black);
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}

@keyframes symbolWin {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.slot-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.control-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.credits-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-purple) 100%);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    min-width: 120px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 15px rgba(255, 179, 0, 0.3);
}

.credits-label {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-bottom: 0.3rem;
    color: var(--accent-gold);
}

.credits-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.bet-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 179, 0, 0.3);
}

.btn-bet {
    width: 30px;
    height: 30px;
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(255, 179, 0, 0.3);
}

.btn-bet:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.5);
}

.bet-amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    min-width: 40px;
    text-align: center;
    background: rgba(255, 179, 0, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 179, 0, 0.4);
}

.btn-spin {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 20px rgba(255, 179, 0, 0.4);
    border: 2px solid var(--accent-gold);
}

.btn-spin:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 179, 0, 0.6);
}

.spin-text {
    font-weight: 700;
}

.spin-cost {
    font-size: 0.8rem;
    opacity: 0.8;
}

.btn-sound {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(106, 27, 154, 0.3);
    border: 2px solid rgba(255, 179, 0, 0.3);
}

.btn-sound:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(106, 27, 154, 0.5);
}

.btn-auto {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-purple) 100%);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
    box-shadow: 0 2px 10px rgba(26, 35, 126, 0.3);
    border: 2px solid rgba(255, 179, 0, 0.3);
}

.btn-auto:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.5);
}

.btn-auto.active {
    background: var(--gradient-gold);
    color: var(--black);
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(255, 179, 0, 0.6);
}

.win-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--accent-gold) 0%, #FFD54F 100%);
    color: var(--black);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(255, 179, 0, 0.8);
    z-index: 10000;
    text-align: center;
    border: 3px solid var(--white);
    animation: successPulse 0.6s ease-in-out;
}

@keyframes successPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.win-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.win-icon {
    font-size: 3rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.win-message {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
}

.win-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-shadow: 0 0 10px rgba(26, 35, 126, 0.3);
}

.game-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 179, 0, 0.3);
}

.paytable {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 179, 0, 0.3);
}

.paytable h4 {
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 179, 0, 0.5);
}

.paytable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.paytable-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 179, 0, 0.2);
    transition: var(--transition-fast);
}

.paytable-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 179, 0, 0.4);
    transform: translateY(-2px);
}

.paytable-item .symbol {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border: 2px solid rgba(255, 179, 0, 0.4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paytable-item .symbol svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.payout {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

/* How to Play Section */
.how-to-play {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-dark) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition-medium);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-mystic);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-purple) 100%);
    color: var(--white);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--primary-dark) 100%);
}

.faq-question h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-gold);
    transition: var(--transition-fast);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem 2rem 1rem;
    margin: 0;
    color: var(--gray-dark);
    line-height: 1.6;
}

.faq-tip {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #FFD54F 100%);
    color: var(--black);
    padding: 1rem 2rem 1.5rem;
    margin: 0 2rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.how-to-play-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-text {
    color: var(--white);
    font-size: 1.1rem;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-purple) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="rgba(255,179,0,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,179,0,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,179,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    font-weight: 400;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-mystic);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 179, 0, 0.1), transparent);
    transition: var(--transition-medium);
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.testimonial-text {
    color: var(--gray-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-author {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-location {
    color: var(--accent-purple);
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonials-cta {
    text-align: center;
}

/* Statistics Section */
.statistics {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--primary-gold) 100%);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-mystic);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-family: 'Cinzel', serif;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 0.5rem;
}

.stat-description {
    color: var(--gray-dark);
    font-size: 0.9rem;
    line-height: 1.4;
}

.stats-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.info-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .slot-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-icons {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stats-info {
        grid-template-columns: 1fr;
    }
    
    .slot-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .game-stats {
        gap: 1rem;
    }
    
    .control-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slot-reels {
        padding: 1rem;
        gap: 0.3rem;
    }
    
    .symbol {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .paytable-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .slot-machine {
        padding: 1rem;
    }
    
    .slot-reels {
        padding: 0.5rem;
    }
    
    .symbol {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.4);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info p {
    color: var(--white);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition-fast);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(255, 179, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-label a {
    color: var(--accent-gold);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

/* Contact Section Mobile Responsiveness */
@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 0 -1rem;
        border-radius: 12px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .checkbox-label {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 2rem 0;
    }
    
    .contact-content {
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 1rem;
        margin: 0 -0.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 16px;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
    }
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 3px solid var(--accent-gold);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section li {
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: var(--transition-fast);
    filter: brightness(0.8);
}

.social-icon:hover {
    filter: brightness(1.2);
    transform: scale(1.1);
}

.footer-banners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p,
.developer p {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.9rem;
}

.developer a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
}

.developer a:hover {
    text-decoration: underline;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: successPulse 1s ease-in-out;
}

@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-message h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--white);
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: var(--white);
    font-weight: 500;
    z-index: 10000;
    max-width: 300px;
    box-shadow: var(--shadow-soft);
    animation: slideInRight 0.3s ease;
}

.notification-info {
    background: #2196f3;
}

.notification-success {
    background: #4caf50;
}

.notification-error {
    background: #f44336;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --primary-dark: #000000;
        --white: #ffffff;
        --accent-gold: #ffff00;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn-primary,
    .btn-secondary {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Additional Mobile Responsiveness */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .slot-machine {
        padding: 1rem;
    }
    
    .slot-reels {
        padding: 0.5rem;
    }
    
    .symbol {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .slot-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-icons {
        flex-direction: column;
        gap: 1rem;
    }
}

.features-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.6) 0%, rgba(106, 27, 154, 0.5) 100%);
    z-index: 1;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.7) 0%, rgba(106, 27, 154, 0.6) 100%);
    z-index: 1;
}

.features .container {
    position: relative;
    z-index: 2;
}

.game-preview .container {
    position: relative;
    z-index: 2;
}
