:root {
    --primary-color: #4c1d95;
    --secondary-color: #059669;
    --accent-color: #a855f7;
    --background-color: #1a1625;
    --text-color: #e5e7eb;
    --card-bg: #2d1b3d;
    --border-color: #6b46c1;
    --warning-bg: #451a03;
    --warning-border: #f59e0b;
    --footer-bg: #111827;
    --gradient-primary: linear-gradient(135deg, #4c1d95, #7c3aed);
    --gradient-secondary: linear-gradient(135deg, #059669, #10b981);
    --gradient-mystical: linear-gradient(135deg, #4c1d95 0%, #a855f7 50%, #059669 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--background-color);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(5, 150, 105, 0.1) 0%, transparent 50%);
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: rgba(76, 29, 149, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(76, 29, 149, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e879f9;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(232, 121, 249, 0.5);
    letter-spacing: 1px;
    font-family: 'Crimson Text', serif;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: rgba(232, 121, 249, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(232, 121, 249, 0.3);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e879f9;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(232, 121, 249, 0.5);
}

.nav-menu {
    display: flex;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

.nav-menu ul li a {
    color: #d8b4fe;
    text-decoration: none;
    padding: 12px 24px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid transparent;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    background: rgba(232, 121, 249, 0.2);
    border-color: var(--accent-color);
    color: #e879f9;
    text-shadow: 0 0 8px rgba(232, 121, 249, 0.6);
}

/* Main Content */
.main-content {
    margin-top: 100px;
    padding: 40px 20px;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    padding: 60px 0 40px;
    margin-bottom: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--gradient-mystical);
    border-radius: 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 8px 20px;
    margin-bottom: 24px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.title-line {
    display: block;
    color: #e5e7eb;
}

.title-highlight {
    display: block;
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { text-shadow: 0 0 20px rgba(251, 191, 36, 0.4); }
    50% { text-shadow: 0 0 30px rgba(251, 191, 36, 0.8); }
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 480px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #fbbf24;
    color: white;
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 14px 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

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

/* Hero Visual Section - Simplified */
.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-simple {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crystal-ball-simple {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(251,191,36,0.6), rgba(76,29,149,0.9));
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 0 30px rgba(251, 191, 36, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    animation: crystalRotate 15s linear infinite;
}

.crystal-glow-simple {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
    animation: mysticalGlow 4s ease-in-out infinite;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes floatAround {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

@keyframes crystalRotate {
    from {
        transform: rotateY(0deg) rotateX(10deg);
    }
    to {
        transform: rotateY(360deg) rotateX(10deg);
    }
}

@keyframes mysticalGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}

@keyframes particleFloat {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100px);
    }
}

/* Disclaimer Section */
.disclaimer-section {
    background: var(--warning-bg);
    border: 3px solid var(--warning-border);
    border-radius: 20px;
    padding: 45px 50px;
    margin: 60px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(69, 26, 3, 0.4);
}

.disclaimer-section::before {
    content: '⚠️';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    opacity: 0.7;
}

.disclaimer-section h2 {
    color: #fbbf24;
    margin-bottom: 24px;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.disclaimer-section p {
    color: #fde68a;
    margin-bottom: 28px;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.8;
}

.btn-secondary {
    background: var(--warning-border);
    color: var(--warning-bg);
    padding: 14px 35px;
    border: 2px solid #fbbf24;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: #fbbf24;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

/* Game Section */
.game-section {
    background: var(--card-bg);
    padding: 60px 55px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(45, 27, 61, 0.5);
    margin: 60px 0;
    text-align: center;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.game-section h2 {
    color: var(--accent-color);
    margin-bottom: 40px;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.game-frame {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    border: 3px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(107, 70, 193, 0.3);
    margin: 0 auto;
    display: block;
    background: linear-gradient(135deg, #2d1b3d, #3730a3);
}

/* About Section */
.about-section {
    background: var(--card-bg);
    padding: 70px 55px;
    border-radius: 30px;
    margin: 60px 0;
    box-shadow: 0 20px 60px rgba(45, 27, 61, 0.5);
    border: 2px solid rgba(5, 150, 105, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: var(--secondary-color);
    margin-bottom: 28px;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(5, 150, 105, 0.5);
}

.about-text p {
    margin-bottom: 22px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #d1d5db;
}

.about-image {
    text-align: center;
    font-size: 8rem;
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Reviews Section */
.reviews-section {
    background: var(--card-bg);
    padding: 70px 55px;
    border-radius: 30px;
    margin: 60px 0;
    box-shadow: 0 20px 60px rgba(45, 27, 61, 0.5);
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.reviews-section h2 {
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 55px;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

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

.review-card {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    padding: 40px 35px;
    border-radius: 20px;
    border: 2px solid rgba(168, 85, 247, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(168, 85, 247, 0.1) 50%, transparent 100%);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.3);
}

.review-card:hover::before {
    opacity: 1;
}

.review-card .rating {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.review-card .review-text {
    font-style: italic;
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d1d5db;
    position: relative;
    z-index: 1;
}

.review-card .reviewer {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Features Section */
.features-section {
    background: var(--card-bg);
    padding: 70px 55px;
    border-radius: 30px;
    margin: 60px 0;
    box-shadow: 0 20px 60px rgba(45, 27, 61, 0.5);
    border: 2px solid rgba(5, 150, 105, 0.3);
}

.features-section h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 55px;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(5, 150, 105, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
}

.feature-card {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    padding: 45px 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(5, 150, 105, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--secondary-color);
    box-shadow: 0 25px 60px rgba(5, 150, 105, 0.3);
}

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

.feature-icon {
    font-size: 3.8rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 18px;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.feature-card p {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #d1d5db;
    position: relative;
    z-index: 2;
}

/* Contact Form */
.contact-section {
    background: var(--card-bg);
    padding: 70px 55px;
    border-radius: 30px;
    margin: 60px 0;
    box-shadow: 0 20px 60px rgba(45, 27, 61, 0.5);
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.contact-section h2 {
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 50px;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.contact-form {
    max-width: 650px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 12px;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(55, 65, 81, 0.5);
    color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    background: rgba(55, 65, 81, 0.8);
}

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

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

/* Policy Pages */
.policy-content {
    background: var(--card-bg);
    padding: 70px 55px;
    border-radius: 30px;
    margin: 60px 0;
    box-shadow: 0 20px 60px rgba(45, 27, 61, 0.5);
    line-height: 1.8;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.policy-content h1 {
    color: var(--accent-color);
    margin-bottom: 40px;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.policy-content h2 {
    color: var(--secondary-color);
    margin: 40px 0 22px 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.policy-content h3 {
    color: var(--accent-color);
    margin: 28px 0 16px 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #d1d5db;
}

.policy-content ul {
    margin: 22px 0;
    padding-left: 40px;
}

.policy-content li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #d1d5db;
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: #9ca3af;
    padding: 80px 30px 30px;
    margin-top: 100px;
    border-top: 3px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 28px;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.footer-section p,
.footer-section li {
    line-height: 1.8;
    font-size: 1rem;
    color: #d1d5db;
}

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

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
}

.footer-disclaimer {
    background: rgba(168, 85, 247, 0.1);
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 35px;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.footer-disclaimer p {
    color: #e5e7eb;
    line-height: 1.8;
    font-size: 1.05rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(168, 85, 247, 0.3);
    font-size: 1rem;
    color: #9ca3af;
}

/* Popup Disclaimer */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.95);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.popup-content {
    background: var(--card-bg);
    padding: 55px 50px;
    border-radius: 25px;
    max-width: 580px;
    margin: 30px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    border: 3px solid var(--accent-color);
    position: relative;
}

.popup-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-mystical);
    border-radius: 25px;
    z-index: -1;
}

.popup-content h3 {
    color: var(--accent-color);
    margin-bottom: 28px;
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.popup-content p {
    margin-bottom: 22px;
    line-height: 1.8;
    color: #d1d5db;
    font-size: 1.1rem;
}

.popup-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 35px;
}

.btn-accept {
    background: var(--gradient-primary);
    color: white;
    padding: 16px 40px;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.btn-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5);
}

.btn-decline {
    background: #dc2626;
    color: white;
    padding: 16px 40px;
    border: 2px solid #ef4444;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.btn-decline:hover {
    background: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.5);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--gradient-mystical);
    color: white;
    width: 65px;
    height: 65px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    transition: all 0.3s ease;
    font-weight: bold;
}

.scroll-to-top:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.6);
}

.scroll-to-top.visible {
    display: flex;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(76, 29, 149, 0.98);
        min-width: 240px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        border-radius: 0 0 20px 20px;
        border: 2px solid rgba(232, 121, 249, 0.3);
        border-top: none;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 30px 0;
        gap: 5px;
    }
    
    .nav-menu ul li a {
        padding: 20px 35px;
        border-bottom: 1px solid rgba(232, 121, 249, 0.2);
        border-radius: 0;
    }
    
    /* Hero Mobile Styles */
    .hero {
        min-height: 50vh;
        padding: 50px 0 30px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 25px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary-outline {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 200px;
    }
    
    .hero-image-simple {
        width: 150px;
        height: 150px;
    }
    
    .crystal-ball-simple {
        width: 130px;
        height: 130px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image {
        font-size: 6rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .popup-content {
        margin: 20px;
        padding: 45px 30px;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
    
    .game-frame {
        height: auto;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 30px 15px;
    }
    
    .hero {
        padding: 40px 0 30px;
        min-height: 45vh;
    }
    
    .hero-container {
        padding: 0 20px;
        gap: 25px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn-primary,
    .btn-secondary-outline {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 180px;
    }
    
    .hero-image-simple {
        width: 120px;
        height: 120px;
    }
    
    .crystal-ball-simple {
        width: 100px;
        height: 100px;
    }
    
    .game-section,
    .about-section,
    .features-section,
    .reviews-section,
    .contact-section,
    .policy-content {
        padding: 50px 30px;
    }
    
    .game-frame {
        height: auto;
    }
    
    .features-grid,
    .reviews-grid {
        gap: 30px;
    }
}