/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e2e2;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

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

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

a {
    color: #4ade80;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #22c55e;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #94a3b8;
    padding: 12px 32px;
    border: 2px solid #475569;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    border-color: #64748b;
    color: #e2e8f0;
    background: rgba(100, 116, 139, 0.1);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.2rem;
}

/* Age Gate Popup */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #475569;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
}

.age-gate-content h2 {
    color: #f8fafc;
    font-size: 2rem;
    margin-bottom: 20px;
}

.age-gate-content p {
    color: #cbd5e1;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 20px;
    border-top: 2px solid #475569;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    color: #cbd5e1;
    margin-bottom: 0;
    flex: 1;
}

.btn-accept {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
}

.btn-decline {
    background: transparent;
    color: #94a3b8;
    padding: 10px 20px;
    border: 1px solid #475569;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-decline:hover {
    border-color: #64748b;
    color: #e2e8f0;
}

/* Header */
.header {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #2d3748;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #cbd5e1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3b82f6;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #cbd5e1;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 15, 26, 0.8) 0%, 
        rgba(30, 41, 59, 0.6) 50%, 
        rgba(51, 65, 85, 0.8) 100%
    ),
    url('https://images.pexels.com/photos/956999/milky-way-starry-sky-night-sky-star-956999.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Game Preview Section */
.game-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-header p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}
/* Game preview image */
.game-preview-image {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.game-image-preview {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.game-image-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.3);
}

.play-game-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 16px 48px;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.play-game-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.about-content {
    text-align: left;
}

.about-image {
    position: relative;
}

.ninja-character {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    border-radius: 20px;
    border: 2px solid #475569;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.ninja-character::before {
    content: '🥷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    opacity: 0.3;
}

.about-text h2 {
    color: #3b82f6;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    color: #8b5cf6;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(15, 15, 26, 0.9) 0%, 
        rgba(30, 41, 59, 0.8) 100%
    ),
    url('https://images.pexels.com/photos/956999/milky-way-starry-sky-night-sky-star-956999.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

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

.page-header h1 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
}

/* Games Grid */
.games-grid {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.games-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.game-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #475569;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.game-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.game-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
}

.game-image.ninja-slots {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}

.game-image.shadow-fortune {
    background: linear-gradient(135deg, #581c87 0%, #3730a3 100%);
}

.game-image.stealth-spins {
    background: linear-gradient(135deg, #166534 0%, #15803d 100%);
}

.game-image.dojo-master {
    background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
}

.game-image.midnight-warrior {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.game-image.blade-legend {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
}

.game-info {
    padding: 25px;
}

.game-info h3 {
    color: #f8fafc;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.game-info p {
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Game Features */
.game-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.game-features h2 {
    text-align: center;
    color: #3b82f6;
    font-size: 3rem;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
}

.feature-icon.mobile::before { content: '📱'; }
.feature-icon.free::before { content: '🎮'; }
.feature-icon.social::before { content: '👥'; }
.feature-icon.ninja::before { content: '🥷'; }

.feature h3 {
    color: #f8fafc;
    margin-bottom: 15px;
}

.feature p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Promotions */
.promotions-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.promotion-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 20px;
    border: 2px solid #475569;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.promotion-card.featured {
    border-color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, #1e293b 100%);
}

.promotion-header {
    padding: 20px 25px 0;
    position: relative;
}

.promotion-badge {
    position: absolute;
    top: -2px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 0 0 8px 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.promotion-header h3 {
    color: #f8fafc;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.promotion-content {
    padding: 25px;
}

.promotion-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.promotion-icon.welcome::before { content: '🎯'; }
.promotion-icon.daily::before { content: '📅'; }
.promotion-icon.tournament::before { content: '🏆'; }
.promotion-icon.levelup::before { content: '⬆️'; }
.promotion-icon.friends::before { content: '👫'; }
.promotion-icon.seasonal::before { content: '🎪'; }

.promotion-content p {
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.promotion-benefits {
    list-style: none;
    margin-bottom: 25px;
}

.promotion-benefits li {
    color: #cbd5e1;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.promotion-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.promotion-notice {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.notice-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.notice-content h3 {
    color: #ef4444;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.notice-content p {
    color: #fca5a5;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* About Detailed */
.about-detailed {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.about-content-detailed {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.about-main h2 {
    color: #3b82f6;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-main h3 {
    color: #8b5cf6;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.about-main p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.features-detailed {
    margin: 40px 0;
}

.feature-item {
    background: rgba(59, 130, 246, 0.05);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #3b82f6;
}

.feature-item h3 {
    color: #f8fafc;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.feature-item p {
    color: #94a3b8;
    margin-bottom: 0;
    line-height: 1.6;
}

.about-sidebar {
    space-y: 40px;
}

.company-stats,
.team-info,
.certifications {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #475569;
    margin-bottom: 30px;
}

.company-stats h3,
.team-info h3,
.certifications h3 {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #475569;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #22c55e;
}

.stat-label {
    color: #94a3b8;
    font-weight: 600;
}

.team-info ul {
    list-style: none;
}

.team-info li {
    color: #cbd5e1;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.team-info li::before {
    content: '⭐';
    position: absolute;
    left: 0;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.cert-badge {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

/* Contact Styles */
.contact-info {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-methods h2 {
    color: #3b82f6;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.contact-icon.phone::before { content: '📞'; }
.contact-icon.email::before { content: '📧'; }
.contact-icon.location::before { content: '📍'; }

.contact-details h3 {
    color: #f8fafc;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.contact-details p {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-hours {
    color: #94a3b8;
    font-size: 0.9rem;
    font-style: italic;
}

.contact-form-section h2 {
    color: #8b5cf6;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contact-form {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #475569;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #cbd5e1;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #475569;
    color: #e2e8f0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
    cursor: pointer;
    line-height: 1.5;
}

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

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.faq-section h2 {
    color: #3b82f6;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(59, 130, 246, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-item h3 {
    color: #f8fafc;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Responsible Gaming */
.responsible-gaming-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.responsible-gaming-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.rg-main h2 {
    color: #3b82f6;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.rg-main h3 {
    color: #8b5cf6;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.rg-main p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.rg-main ul {
    color: #94a3b8;
    margin-bottom: 2rem;
    padding-left: 20px;
}

.rg-main li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.guidelines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.guideline-item {
    background: rgba(59, 130, 246, 0.05);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.guideline-item h4 {
    color: #f8fafc;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.guideline-item p {
    color: #94a3b8;
    margin: 0;
    line-height: 1.6;
}

.warning-signs {
    background: rgba(239, 68, 68, 0.1);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(239, 68, 68, 0.2);
    margin: 20px 0;
}

.warning-signs ul {
    color: #fca5a5;
    margin: 0;
}

.warning-signs li {
    margin-bottom: 10px;
}

.self-assessment {
    margin: 30px 0;
}

.assessment-questions {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.question {
    background: rgba(139, 92, 246, 0.05);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #8b5cf6;
}

.question p:first-child {
    color: #f8fafc;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.question p:last-child {
    color: #94a3b8;
    margin: 0;
}

.rg-sidebar .support-resources,
.rg-sidebar .quick-help,
.rg-sidebar .additional-resources {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #475569;
    margin-bottom: 30px;
}

.support-resources h3,
.quick-help h3,
.additional-resources h3 {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.resource-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #475569;
}

.resource-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.resource-item h4 {
    color: #f8fafc;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.resource-item p {
    color: #94a3b8;
    margin-bottom: 10px;
    line-height: 1.5;
}

.resource-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: underline;
}

.resource-link:hover {
    color: #2563eb;
}

.helpline {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.9rem;
}

.emergency-contacts {
    text-align: center;
}

.emergency-contacts p {
    color: #cbd5e1;
    margin-bottom: 5px;
}

.emergency-contacts strong {
    color: #ef4444;
}

.help-hours {
    color: #94a3b8;
    font-size: 0.9rem;
    font-style: italic;
}

.additional-resources ul {
    list-style: none;
    padding: 0;
}

.additional-resources li {
    margin-bottom: 10px;
}

.additional-resources a {
    color: #3b82f6;
    font-weight: 500;
}

/* Policies */
.policy-nav {
    padding: 40px 0;
    background: rgba(30, 41, 59, 0.5);
    border-bottom: 2px solid #475569;
}

.nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.policy-btn {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: #d1d5db;
    border: 1px solid #475569;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.policy-btn:hover,
.policy-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.policy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: none;
}

.policy-section.active {
    display: block;
}

.policy-section h2 {
    color: #3b82f6;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.policy-section h3 {
    color: #8b5cf6;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-section h4 {
    color: #f8fafc;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.policy-section p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.policy-section ul {
    color: #94a3b8;
    margin-bottom: 2rem;
    padding-left: 20px;
}

.policy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.policy-section strong {
    color: #f8fafc;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
    color: #cbd5e1;
    padding: 60px 0 20px;
    border-top: 2px solid #374151;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #374151;
}

.responsible-gaming-logos {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo-link:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.logo-link:hover .logo-image {
    filter: brightness(1.1);
}

.logo-text {
    color: #3b82f6;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.age-disclaimer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.age-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.age-disclaimer p {
    color: #fca5a5;
    font-weight: 600;
    margin: 0;
}

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

.footer-section h4 {
    color: #3b82f6;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #6b7280;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
    line-height: 1.5;
}

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

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 15, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 20px 0;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

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

    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Layout adjustments */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content-detailed {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .responsible-gaming-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .games-container {
        grid-template-columns: 1fr;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .guidelines {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Game interface */
    .game-header {
        flex-direction: column;
        gap: 15px;
    }

    .game-controls {
        gap: 10px;
    }

    .control-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .reels {
        grid-template-columns: repeat(5, 1fr);
        gap: 5px;
        padding: 15px;
    }

    /* Cookie consent */
    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .responsible-gaming-logos {
        justify-content: center;
        gap: 15px;
    }

    .logo-link {
        padding: 12px 20px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .age-disclaimer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Policy buttons */
    .nav-buttons {
        gap: 10px;
    }

    .policy-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .game-screen {
        padding: 20px;
    }

    .promotion-card,
    .game-card {
        margin: 0 10px;
    }

    .contact-form {
        padding: 25px;
    }

    .company-stats,
    .team-info,
    .certifications {
        padding: 20px;
    }
}

/* Loading and Animation States */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-background::before,
    .page-header::before {
        opacity: 0.9;
    }
    
    .game-screen,
    .promotion-card,
    .game-card {
        border-width: 3px;
    }
}