:root {
    --primary-color: #1e3a8a;
    --secondary-color: #0d9488;
    --accent-color: #6366f1;
    --background-color: #f0f9ff;
    --text-color: #1e293b;
    --card-bg: #ffffff;
    --border-color: #cbd5e1;
    --warning-bg: #fef3c7;
    --warning-border: #f59e0b;
    --footer-bg: #0f172a;
    --gradient-primary: linear-gradient(135deg, #1e3a8a, #3b82f6);
    --gradient-secondary: linear-gradient(135deg, #0d9488, #14b8a6);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background-color);
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(99, 102, 241, 0.8));
    z-index: -1;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: relative;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.logo-icon {
    font-size: 2rem;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from { text-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 25px rgba(255, 215, 0, 0.4); }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-menu ul li a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
}

.nav-menu ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-menu ul li a:hover::before,
.nav-menu ul li a.active::before {
    opacity: 1;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6366f1 100%);
    color: white;
    padding: 120px 50px 100px;
    text-align: center;
    margin-bottom: 50px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13, 148, 136, 0.3);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.hero-circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.hero-circle-3 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 25%;
    animation-delay: 4s;
}

.hero-wave {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    transform: skewY(-3deg);
    animation: wave 4s ease-in-out infinite;
}

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

@keyframes wave {
    0%, 100% { transform: skewY(-3deg) translateX(0); }
    50% { transform: skewY(-2deg) translateX(20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.2rem;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}

.hero-title {
    font-size: 4.2rem;
    margin-bottom: 30px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    animation: slideInUp 1s ease-out;
}

.title-highlight {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

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

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.4s both;
}

.btn-primary {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    color: var(--primary-color);
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

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

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

.btn-glow:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-secondary-hero {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 18px 35px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px 40px;
    margin: 0 auto;
    max-width: 600px;
    animation: slideInUp 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: floatRandom 8s ease-in-out infinite;
}

.floating-element-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.floating-element-2 {
    top: 25%;
    right: 20%;
    animation-delay: 2s;
}

.floating-element-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 4s;
}

.floating-element-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 6s;
}

@keyframes floatRandom {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(-30px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

/* Disclaimer Section */
.disclaimer-section {
    background: var(--warning-bg);
    border: 3px solid var(--warning-border);
    border-radius: 16px;
    padding: 40px 45px;
    margin: 50px 0;
    text-align: center;
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.2);
}

.disclaimer-section h2 {
    color: #92400e;
    margin-bottom: 20px;
    font-size: 1.9rem;
    font-weight: 800;
}

.disclaimer-section p {
    color: #92400e;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.7;
}

.btn-secondary {
    background: var(--warning-border);
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

/* Game Section */
.game-section {
    background: var(--card-bg);
    padding: 55px 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin: 50px 0;
    text-align: center;
}

.game-section h2 {
    color: var(--primary-color);
    margin-bottom: 35px;
    font-size: 2.5rem;
    font-weight: 800;
}

.game-frame {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin: 0 auto;
    display: block;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}

/* About Section */
.about-section {
    background: var(--card-bg);
    padding: 60px 50px;
    border-radius: 24px;
    margin: 50px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.about-text h2 {
    color: var(--secondary-color);
    margin-bottom: 24px;
    font-size: 2.5rem;
    font-weight: 800;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #475569;
}

.about-image {
    text-align: center;
    font-size: 6rem;
    color: var(--accent-color);
    opacity: 0.8;
}

/* Reviews Section */
.reviews-section {
    background: var(--card-bg);
    padding: 60px 50px;
    border-radius: 24px;
    margin: 50px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.reviews-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 800;
}

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

.review-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 35px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.review-card .rating {
    color: #f59e0b;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.review-card .review-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

.review-card .reviewer {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.05rem;
}

/* Features Section */
.features-section {
    background: var(--card-bg);
    padding: 60px 50px;
    border-radius: 24px;
    margin: 50px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.features-section h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 800;
}

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

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: block;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 1.4rem;
    font-weight: 700;
}

.feature-card p {
    line-height: 1.7;
    font-size: 1.02rem;
    color: #64748b;
}

/* Contact Form */
.contact-section {
    background: var(--card-bg);
    padding: 60px 50px;
    border-radius: 24px;
    margin: 50px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 800;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: white;
}

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

/* Policy Pages */
.policy-content {
    background: var(--card-bg);
    padding: 60px 50px;
    border-radius: 24px;
    margin: 50px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    line-height: 1.8;
}

.policy-content h1 {
    color: var(--primary-color);
    margin-bottom: 35px;
    font-size: 2.8rem;
    font-weight: 800;
}

.policy-content h2 {
    color: var(--secondary-color);
    margin: 35px 0 20px 0;
    font-size: 1.65rem;
    font-weight: 700;
}

.policy-content h3 {
    color: var(--primary-color);
    margin: 25px 0 15px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

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

.policy-content ul {
    margin: 20px 0;
    padding-left: 35px;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #cbd5e1;
    padding: 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}

.pattern-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    animation: patternFloat 8s ease-in-out infinite;
}

.pattern-circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.pattern-circle-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 3s;
}

.pattern-circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.footer-main {
    position: relative;
    z-index: 1;
    padding: 70px 40px 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    font-size: 2.5rem;
    animation: footerGlow 3s ease-in-out infinite alternate;
}

@keyframes footerGlow {
    from { filter: drop-shadow(0 0 5px rgba(99, 102, 241, 0.5)); }
    to { filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.8)); }
}

.footer-section h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.35rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
}

.footer-section p,
.footer-section li {
    line-height: 1.8;
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 12px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.footer-section ul li a::before {
    content: '▶';
    font-size: 0.7rem;
    color: var(--accent-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.social-badge:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #fca5a5;
    font-weight: 600;
    margin-top: 15px;
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}

.footer-disclaimer {
    background: rgba(99, 102, 241, 0.1);
    border-top: 2px solid rgba(99, 102, 241, 0.3);
    position: relative;
    z-index: 1;
}

.disclaimer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.disclaimer-icon {
    font-size: 2rem;
    animation: disclaimerBounce 2s ease-in-out infinite;
}

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

.disclaimer-content p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
    flex: 1;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content p {
    font-size: 1rem;
    color: #94a3b8;
    margin: 0;
}

.footer-year {
    background: rgba(99, 102, 241, 0.2);
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 600;
    color: #cbd5e1;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

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

.popup-content {
    background: white;
    padding: 50px 45px;
    border-radius: 24px;
    max-width: 560px;
    margin: 25px;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    border: 3px solid var(--accent-color);
}

.popup-content h3 {
    color: var(--primary-color);
    margin-bottom: 24px;
    font-size: 1.9rem;
    font-weight: 800;
}

.popup-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #475569;
    font-size: 1.05rem;
}

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

.btn-accept {
    background: var(--gradient-primary);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1.05rem;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.btn-decline {
    background: #dc2626;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1.05rem;
}

.btn-decline:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background: var(--gradient-primary);
    color: white;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    transition: all 0.3s ease;
    font-weight: bold;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 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(30, 58, 138, 0.95);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        min-width: 250px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        border-radius: 0 0 20px 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-top: none;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 25px 0;
        gap: 5px;
    }
    
    .nav-menu ul li a {
        padding: 15px 30px;
        margin: 0 15px;
        border-radius: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
    }
    
    .logo {
        font-size: 1.5rem;
        padding: 6px 12px;
    }
    
    .logo-icon {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 80px 30px 60px;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 25px;
    }
    
    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 35px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .btn-primary,
    .btn-secondary-hero {
        padding: 16px 35px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        margin: 0 20px;
    }
    
    .stat-divider {
        width: 100px;
        height: 1px;
    }
    
    .hero-circle-1,
    .hero-circle-2,
    .hero-circle-3 {
        width: 80px;
        height: 80px;
    }
    
    .floating-element {
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-main {
        padding: 50px 25px 0;
    }
    
    .disclaimer-content {
        padding: 25px 25px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-content {
        padding: 20px 25px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .popup-content {
        margin: 15px;
        padding: 40px 25px;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
    
    .game-frame {
        height: auto;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 25px 15px;
    }
    
    .nav-container {
        padding: 12px 20px;
    }
    
    .logo {
        font-size: 1.3rem;
        padding: 5px 10px;
    }
    
    .logo-icon {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        min-width: 200px;
    }
    
    .nav-menu ul li a {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 60px 20px 50px;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .hero-badge {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .hero-stats {
        padding: 15px 20px;
        margin: 0 10px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .footer-main {
        padding: 40px 15px 0;
    }
    
    .disclaimer-content {
        padding: 20px 15px;
    }
    
    .footer-bottom-content {
        padding: 15px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .pattern-circle {
        display: none;
    }
    
    .game-section,
    .about-section,
    .features-section,
    .reviews-section,
    .contact-section,
    .policy-content {
        padding: 40px 25px;
    }
    
    .game-frame {
        height: auto;
    }
    
    .features-grid,
    .reviews-grid {
        gap: 25px;
    }
}