/* 123 BOOM! Website Styles */
/* Dark theme with blue accents inspired by modern gaming design */

/* CSS 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    color: #ffffff;
}

h3 {
    font-size: 1.5rem;
    color: #e5e7eb;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #60a5fa;
    border: 2px solid #60a5fa;
}

.btn-secondary:hover {
    background: #60a5fa;
    color: #ffffff;
}

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

.btn-outline:hover {
    background: #ffffff;
    color: #0a0a0a;
}

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

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

.btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: #ffffff;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-left: 0.5rem;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

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

.nav-menu a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #60a5fa;
}

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

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

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

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

/* Main Content */
.main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1e1b4b 50%, #0a0a0a 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #60a5fa;
}

.stat-label {
    font-size: 0.9rem;
    color: #9ca3af;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-preview {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-preview img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Quick Facts Section */
.quick-facts {
    padding: 4rem 0;
    background: #111111;
}

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

.fact-card {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
}

.fact-icon {
    margin-bottom: 1rem;
}

.fact-icon img {
    width: 48px;
    height: 48px;
}

.fact-card h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

.win-stats {
    background: rgba(10, 10, 10, 0.5);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.win-stats h3 {
    margin-bottom: 2rem;
    color: #ffffff;
}

.win-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.win-stat {
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.win-category {
    font-size: 0.9rem;
    color: #9ca3af;
}

.win-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #60a5fa;
}

/* Game Features Section */
.game-features {
    padding: 4rem 0;
    background: #0a0a0a;
}

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

.feature-card {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

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

.feature-icon img {
    width: 48px;
    height: 48px;
}

.feature-card h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

/* How to Play Section */
.how-to-play {
    padding: 4rem 0;
    background: #111111;
}

.play-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.play-text h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

.play-list {
    list-style: none;
    margin-bottom: 2rem;
}

.play-list li {
    padding: 0.5rem 0;
    color: #d1d5db;
    position: relative;
    padding-left: 1.5rem;
}

.play-list li::before {
    content: '•';
    color: #60a5fa;
    position: absolute;
    left: 0;
}

.play-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Symbols Section */
.symbols {
    padding: 4rem 0;
    background: #0a0a0a;
}

.symbols-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.symbol-category h3 {
    color: #60a5fa;
    margin-bottom: 2rem;
    text-align: center;
}

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

.symbol-item {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.symbol-item:hover {
    transform: translateY(-5px);
}

.symbol-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.symbol-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.symbol-item p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.payouts {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.payouts span {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Call to Action Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #0a0a0a 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Game Page Styles */
.game-header {
    padding: 2rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1e1b4b 50%, #0a0a0a 100%);
    text-align: center;
}

.game-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.game-subtitle {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.game-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.9rem;
    color: #9ca3af;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #60a5fa;
}

.game-container {
    padding: 2rem 0;
    background: #0a0a0a;
}

.game-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.game-frame-container {
    background: #111111;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
}

.game-controls {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.control-info,
.game-features {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.control-info h3,
.game-features h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

.controls-list,
.features-list {
    list-style: none;
}

.controls-list li,
.features-list li {
    padding: 0.5rem 0;
    color: #d1d5db;
    position: relative;
    padding-left: 1.5rem;
}

.controls-list li::before,
.features-list li::before {
    content: '•';
    color: #60a5fa;
    position: absolute;
    left: 0;
}

/* Game Tips Section */
.game-tips {
    padding: 4rem 0;
    background: #111111;
}

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

.tip-card {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-icon {
    margin-bottom: 1rem;
}

.tip-icon img {
    width: 48px;
    height: 48px;
}

.tip-card h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

/* Game Rules Section */
.game-rules {
    padding: 4rem 0;
    background: #0a0a0a;
}

.rules-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rules-section {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.rules-section h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

.rules-list {
    list-style: none;
}

.rules-list li {
    padding: 0.5rem 0;
    color: #d1d5db;
    position: relative;
    padding-left: 1.5rem;
}

.rules-list li::before {
    content: '•';
    color: #60a5fa;
    position: absolute;
    left: 0;
}

/* Page Header Styles */
.page-header {
    padding: 2rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1e1b4b 50%, #0a0a0a 100%);
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Disclaimer and Privacy Content */
.disclaimer-content,
.privacy-content {
    padding: 4rem 0;
    background: #0a0a0a;
}

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

.disclaimer-section,
.privacy-section {
    margin-bottom: 3rem;
}

.disclaimer-section h2,
.privacy-section h2 {
    color: #60a5fa;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.disclaimer-section h3,
.privacy-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.warning-box h3 {
    color: #fca5a5;
    margin-bottom: 1rem;
}

.disclaimer-list,
.privacy-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.disclaimer-list li,
.privacy-list li {
    padding: 0.5rem 0;
    color: #d1d5db;
    position: relative;
    padding-left: 1.5rem;
}

.disclaimer-list li::before,
.privacy-list li::before {
    content: '•';
    color: #60a5fa;
    position: absolute;
    left: 0;
}

.contact-info {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info a {
    color: #60a5fa;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    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 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-subtitle {
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.footer-contact a {
    color: #60a5fa;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

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

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
}

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

.footer-features li {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.footer-features li::before {
    content: '•';
    color: #60a5fa;
    position: absolute;
    left: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-warning {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.footer-warning p {
    color: #fca5a5;
    margin: 0;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-copyright p {
    margin: 0.25rem 0;
}

/* Contact Page Styles */
.contact-content {
    padding: 4rem 0;
    background: #0a0a0a;
}

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

.contact-info-section h2,
.contact-form-section h2 {
    color: #60a5fa;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.contact-icon img {
    width: 48px;
    height: 48px;
}

.contact-text h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-text p {
    margin-bottom: 0.25rem;
}

.contact-text a {
    color: #60a5fa;
    text-decoration: none;
}

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

.contact-text span {
    font-size: 0.9rem;
    color: #9ca3af;
}

.contact-note {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.contact-note h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

.help-list {
    list-style: none;
}

.help-list li {
    padding: 0.5rem 0;
    color: #d1d5db;
    position: relative;
    padding-left: 1.5rem;
}

.help-list li::before {
    content: '•';
    color: #60a5fa;
    position: absolute;
    left: 0;
}

/* Contact Form Styles */
.contact-form {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

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

/* Success and Error Messages */
.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.success-message h3 {
    color: #4ade80;
    margin-bottom: 1rem;
}

.success-message p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.message-preview {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: left;
}

.message-preview p {
    margin: 0.5rem 0;
    color: #d1d5db;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.error-message p {
    color: #fca5a5;
    margin: 0;
}

/* Contact FAQ Section */
.contact-faq {
    padding: 4rem 0;
    background: #111111;
}

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

.faq-item {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

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

.faq-item p {
    color: #d1d5db;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .header-actions {
        display: none;
    }
    
    .play-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .game-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .game-frame {
        height: 400px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .facts-grid,
    .features-grid,
    .symbol-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .win-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .game-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .game-frame {
        height: 300px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .fact-card,
    .feature-card,
    .tip-card {
        padding: 1.5rem;
    }
    
    .game-frame {
        height: 250px;
    }
}
