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

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #fef3e2;
}

.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: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #374151;
}

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

a:hover {
    color: #fb923c;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fb923c 0%, #0077e6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.4);
}

.btn-secondary {
    background: #fed7aa;
    color: white;
    border: 2px solid #555;
}

.btn-secondary:hover {
    background: #444;
    border-color: #666;
}

.btn-outline {
    background: transparent;
    color: #f97316;
    border: 2px solid #f97316;
}

.btn-outline:hover {
    background: #f97316;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Age Verification Popup */
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-popup-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #f97316;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.age-popup h2 {
    color: #f97316;
    margin-bottom: 1.5rem;
}

.age-popup p {
    color: #374151;
    margin-bottom: 1rem;
}

.age-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #f97316;
    padding: 20px;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    /* Ensure it doesn't interfere with age verification */
    pointer-events: auto;
}

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

.cookie-content p {
    margin: 0;
    color: #374151;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

/* Header */
.header {
    background: #ffffff;
    border-bottom: 2px solid #f97316;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.logo h1 {
    color: #f97316;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 20px rgba(74, 158, 255, 0.5);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: #374151;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #f97316;
    background: rgba(74, 158, 255, 0.1);
}

.header-actions {
    display: flex;
    gap: 16px;
}

/* Compact Vertical Layout */
body {
    font-size: 0.9rem;
    line-height: 1.4;
}

.container {
    max-width: 900px;
    padding: 0 15px;
}

/* Dropdown Sections */
.dropdown-section {
    margin-bottom: 10px;
    border: 1px solid #fed7aa;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-header {
    background: #ffffff;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.dropdown-header:hover {
    background: #2a2a2a;
}

.dropdown-header h3 {
    color: #f97316;
    margin: 0;
    font-size: 1.1rem;
}

.dropdown-arrow {
    color: #f97316;
    transition: transform 0.3s ease;
}

.dropdown-section.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    background: #fed7aa;
    transition: max-height 0.3s ease;
}

.dropdown-section.active .dropdown-content {
    max-height: 500px;
}

.dropdown-content .content-inner {
    padding: 15px 20px;
}

/* Hero Section - Compact */
.hero {
    background: linear-gradient(135deg, #fed7aa 0%, #ffffff 50%, #fed7aa 100%);
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%234a9eff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    color: #f97316;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(74, 158, 255, 0.5);
}

.hero-subtitle {
    color: #fb923c;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: #374151;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #f97316;
    margin-bottom: 1rem;
}

.section-header p {
    color: #b0b0b0;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 80px 0;
    background: #fed7aa;
}

.disclaimer-content {
    text-align: center;
}

.disclaimer-content h3 {
    color: #ff6b6b;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #fed7aa;
    text-align: center;
}

.disclaimer-item h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.disclaimer-item p {
    color: #374151;
}

/* Game Section */
.game-section {
    padding: 80px 0;
    background: #ffffff;
}

.game-content {
    max-width: 1000px;
    margin: 0 auto;
}

.game-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.game-frame-container {
    background: #fed7aa;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid #f97316;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-iframe {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    background: #ffffff;
}

/* Game Page Specific Styles */
.game-header {
    background: linear-gradient(135deg, #fed7aa 0%, #ffffff 50%, #fed7aa 100%);
    padding: 60px 0;
    text-align: center;
}

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

.game-header h1 {
    color: #f97316;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(74, 158, 255, 0.5);
    text-align: center;
}

.game-intro {
    color: #374151;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    display: block;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.game-disclaimer {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    border-radius: 8px;
    padding: 1rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.game-disclaimer p {
    color: #ff6b6b;
    margin: 0;
    font-weight: 500;
}

.game-main {
    padding: 40px 0;
    background: #fed7aa;
}

.game-container {
    max-width: 1000px;
    margin: 0 auto;
}

.game-frame-wrapper {
    background: #fed7aa;
    border-radius: 16px;
    padding: 30px;
    border: 3px solid #f97316;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.game-iframe-main {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    background: #ffffff;
    display: block;
    border: 2px solid #fed7aa;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Game Loading States */
.game-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 600px;
    background: linear-gradient(135deg, #fed7aa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #fed7aa;
    color: #374151;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #fed7aa;
    border-top: 4px solid #f97316;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 2rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.game-loading p {
    font-size: 1.2rem;
    color: #f97316;
    margin: 0;
    text-align: center;
}

/* Local Game Styles */
.local-game {
    background: linear-gradient(135deg, #fed7aa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #f97316;
    padding: 2rem;
    color: #374151;
    min-height: 600px;
}

.game-header {
    text-align: center;
    margin-bottom: 2rem;
}

.game-header h2 {
    color: #f97316;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(74, 158, 255, 0.5);
}

.game-header p {
    color: #1f2937;
    font-size: 1.1rem;
    margin: 0;
}

.slot-machine-container {
    background: #fed7aa;
    border-radius: 12px;
    border: 2px solid #fed7aa;
    padding: 2rem;
    margin-bottom: 2rem;
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.reel {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border: 4px solid #fed7aa;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.reel.spinning {
    animation: spin 0.3s linear infinite;
}

.reel.spinning::before {
    transform: translateX(100%);
}

.slot-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #fed7aa;
}

.credits-display,
.bet-display {
    text-align: center;
}

.credits-label,
.bet-label {
    display: block;
    color: #1f2937;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.credits-amount,
.bet-amount {
    display: block;
    color: #f97316;
    font-size: 1.5rem;
    font-weight: 700;
}

.slot-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.bet-controls {
    display: flex;
    gap: 0.5rem;
}

.bet-controls .btn {
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.spin-btn {
    font-size: 1.3rem;
    padding: 1rem 2rem;
    min-width: 150px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.4);
    transition: all 0.3s ease;
}

.spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.6);
}

.spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.slot-result {
    min-height: 80px;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #fed7aa;
    text-align: center;
    font-size: 1.1rem;
}

.slot-result.win {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #1f2937;
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.slot-result.lose {
    background: linear-gradient(135deg, #ff6b6b 0%, #cc5555 100%);
    color: #1f2937;
    border-color: #ff6b6b;
}

.slot-result.jackpot {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #1f2937;
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
    animation: pulse 1s ease-in-out infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

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

.feature {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #fed7aa;
    text-align: center;
}

.feature h3 {
    color: #f97316;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature p {
    color: #1f2937;
    margin: 0;
    font-size: 0.95rem;
}

/* Game Mode Toggle */
.game-mode-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.game-mode-toggle .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    min-width: 140px;
}

.game-mode-toggle .btn.active {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-color: #f97316;
    color: white;
}

/* External Game Styles */
.external-game {
    min-height: 600px;
}

/* Game Error State */
.game-error {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
    background: linear-gradient(135deg, #fed7aa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #ff6b6b;
    color: #374151;
}

.error-content {
    text-align: center;
    max-width: 500px;
    padding: 2rem;
}

.error-content i {
    font-size: 4rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.error-content h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.error-content p {
    margin-bottom: 1rem;
    color: #374151;
}

.error-content .btn {
    margin: 0 0.5rem;
}

.game-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.game-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-rules h2,
.game-details h2 {
    color: #f97316;
    margin-bottom: 2rem;
    text-align: center;
}

.rules-content,
.details-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rule-item,
.detail-item {
    background: #fed7aa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #fed7aa;
}

.rule-item h3,
.detail-item h3 {
    color: #fb923c;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.rule-item p,
.detail-item p {
    color: #374151;
    margin: 0;
}

.safety-notice {
    padding: 80px 0;
    background: #fed7aa;
}

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

.safety-content h2 {
    color: #f97316;
    margin-bottom: 3rem;
}

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

.safety-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #fed7aa;
    text-align: center;
}

.safety-item h3 {
    color: #fb923c;
    margin-bottom: 1rem;
}

.safety-item p {
    color: #374151;
    margin: 0;
}

.cta-section {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.cta-content h2 {
    color: #f97316;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, #fed7aa 0%, #ffffff 50%, #fed7aa 100%);
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    color: #f97316;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(74, 158, 255, 0.5);
}

.about-subtitle {
    color: #fb923c;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-description {
    color: #374151;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.company-story {
    padding: 80px 0;
    background: #ffffff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text h2 {
    color: #f97316;
    margin-bottom: 2rem;
}

.story-text p {
    color: #374151;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.placeholder-image {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(74, 158, 255, 0.3);
}

.image-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.image-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

.mission-values {
    padding: 80px 0;
    background: #fed7aa;
}

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

.mission-content h2 {
    color: #f97316;
    margin-bottom: 3rem;
}

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

.value-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #fed7aa;
    text-align: center;
}

.value-item h3 {
    color: #fb923c;
    margin-bottom: 1rem;
}

.value-item p {
    color: #374151;
    margin: 0;
}

.development-focus {
    padding: 80px 0;
    background: #ffffff;
}

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

.development-content h2 {
    color: #f97316;
    margin-bottom: 3rem;
}

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

.focus-item {
    background: #fed7aa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #fed7aa;
    text-align: center;
}

.focus-item h3 {
    color: #fb923c;
    margin-bottom: 1rem;
}

.focus-item p {
    color: #374151;
    margin: 0;
}

.team-section {
    padding: 80px 0;
    background: #fed7aa;
}

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

.team-content h2 {
    color: #f97316;
    margin-bottom: 1rem;
}

.team-intro {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-member {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #fed7aa;
    text-align: center;
}

.member-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.team-member h3 {
    color: #fb923c;
    margin-bottom: 1rem;
}

.team-member p {
    color: #374151;
    margin: 0;
}

.about-cta {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.about-cta .cta-content h2 {
    color: #f97316;
    margin-bottom: 1rem;
}

.about-cta .cta-content p {
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Legal Pages and Contact Page Styles */
.privacy-hero,
.terms-hero,
.cookies-hero,
.contact-hero,
.disclaimer-hero {
    background: linear-gradient(135deg, #fed7aa 0%, #ffffff 50%, #fed7aa 100%);
    padding: 80px 0;
    text-align: center;
}

.privacy-hero h1,
.terms-hero h1,
.cookies-hero h1,
.contact-hero h1,
.disclaimer-hero h1 {
    color: #f97316;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(74, 158, 255, 0.5);
}

.privacy-subtitle,
.terms-subtitle,
.cookies-subtitle,
.contact-subtitle,
.disclaimer-subtitle {
    color: #fb923c;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.privacy-intro,
.terms-intro,
.cookies-intro,
.contact-intro,
.disclaimer-intro {
    color: #374151;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content-section,
.terms-content-section,
.cookies-content-section,
.disclaimer-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.privacy-text,
.terms-text,
.cookies-text,
.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-paragraph,
.terms-paragraph,
.cookies-paragraph,
.disclaimer-paragraph {
    margin-bottom: 3rem;
}

.privacy-paragraph h2,
.terms-paragraph h2,
.cookies-paragraph h2,
.disclaimer-paragraph h2 {
    color: #f97316;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.privacy-paragraph p,
.terms-paragraph p,
.cookies-paragraph p,
.disclaimer-paragraph p {
    color: #374151;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Contact Page Specific Styles */
.contact-form-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    color: #f97316;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #374151;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    background: #fed7aa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #fed7aa;
}

.contact-item h3 {
    color: #fb923c;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #374151;
    margin-bottom: 0.5rem;
}

.contact-value {
    color: #f97316 !important;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-form-container {
    background: #fed7aa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #fed7aa;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #fed7aa;
    border-radius: 8px;
    background: #ffffff;
    color: #374151;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f97316;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    line-height: 1.4;
}

.contact-faq {
    padding: 80px 0;
    background: #fed7aa;
}

.contact-faq .faq-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-faq .faq-content h2 {
    color: #f97316;
    margin-bottom: 1rem;
}

.contact-faq .faq-content p {
    color: #b0b0b0;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.additional-support {
    padding: 80px 0;
    background: #ffffff;
}

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

.support-content h2 {
    color: #f97316;
    margin-bottom: 1rem;
}

.support-content p {
    color: #b0b0b0;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.support-item {
    background: #fed7aa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #fed7aa;
    text-align: center;
}

.support-item h3 {
    color: #fb923c;
    margin-bottom: 1rem;
}

.support-item p {
    color: #374151;
    margin-bottom: 1.5rem;
}

/* Contact Actions and Cookie Settings */
.contact-actions,
.settings-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.privacy-contact,
.terms-contact,
.cookie-settings {
    padding: 80px 0;
    background: #fed7aa;
    text-align: center;
}

.privacy-contact .contact-content h2,
.terms-contact .contact-content h2,
.cookie-settings .settings-content h2 {
    color: #f97316;
    margin-bottom: 1rem;
}

.privacy-contact .contact-content p,
.terms-contact .contact-content p,
.cookie-settings .settings-content p {
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.game-info h3 {
    color: #f97316;
    margin-bottom: 1rem;
}

.game-info p {
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fed7aa;
}

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

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #fed7aa;
}

.faq-item h3 {
    color: #f97316;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #374151;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.newsletter-content h3 {
    color: #f97316;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #fed7aa;
    border-radius: 8px;
    background: #fed7aa;
    color: #374151;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #f97316;
}

/* Footer */
.footer {
    background: #fed7aa;
    border-top: 2px solid #f97316;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: #f97316;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f97316;
}

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

.responsible-logo {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.responsible-logo:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #fed7aa;
}

.footer-bottom p {
    color: #4b5563;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #1f2937;
    margin: 15% auto;
    padding: 40px;
    border: 2px solid #f97316;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.close:hover {
    color: #f97316;
}

.modal h2 {
    color: #f97316;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #fed7aa;
    border-radius: 8px;
    background: #fed7aa;
    color: #374151;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #f97316;
}

.login-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .game-preview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .game-iframe {
        height: 250px;
    }
    
    .game-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .game-iframe-main {
        height: 400px;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-faq .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-actions,
    .settings-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .age-popup-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .modal-content {
        padding: 30px 20px;
        margin: 10% auto;
    }
} 

/* Age Verification Popup Styles */
.age-verification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
    /* Ensure it blocks all interactions */
    pointer-events: auto;
    /* Prevent any scrolling or interaction with background */
    overscroll-behavior: none;
}

.age-verification-content {
    background: #ffffff;
    border: 2px solid #f97316;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.5s ease-out;
}

.age-verification-header h2 {
    color: #f97316;
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: none;
}

.age-verification-header p {
    color: #374151;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.age-verification-body p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.age-verification-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.age-verification-actions .btn {
    min-width: 150px;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
}

.age-verification-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.age-verification-footer p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive adjustments for age verification popup */
@media (max-width: 768px) {
    .age-verification-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .age-verification-header h2 {
        font-size: 1.5rem;
    }
    
    .age-verification-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .age-verification-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Champions Slot Game Styles */
.champions-slot-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.champions-slot-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #ffffff;
}

/* Responsive adjustments for Champions Slot */
@media (max-width: 768px) {
    .champions-slot-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .champions-slot-container {
        height: 250px;
    }
} 

/* Champions Slot Game Styles for game.html */
.game-container .champions-slot-container {
    width: 100%;
    height: 600px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.game-container .champions-slot-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #ffffff;
}

/* Responsive adjustments for game.html Champions Slot */
@media (max-width: 768px) {
    .game-container .champions-slot-container {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .game-container .champions-slot-container {
        height: 350px;
    }
} 