/* --- CSS Variables for Theming --- */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color-1: #ed7563;
    --accent-color-2: #f7b731;
    --text-color: #333;
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --footer-bg: #2c3e50;
    --transition-speed: 0.3s;
}

[data-theme="dark"] {
    --text-color: #e0e0e0;
    --bg-color: #1a1a2e;
    --card-bg: #1a1a2e;
    --footer-bg: #0f1419;
}

/* --- Reset & Global Styles --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Poppins', sans-serif; 
    background: linear-gradient(135deg, #f5f7fa, #e4edf5); 
    color: var(--text-color); 
    min-height: 100vh; 
    overflow-x: hidden; 
    position: relative; 
    transition: background var(--transition-speed) ease, color var(--transition-speed) ease;
}
body.dark-mode { 
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); 
}

/* --- Accessibility: Screen Reader Only Text --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --- Loading Screen --- */
.loading-screen { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    z-index: 9999; 
    transition: opacity 0.5s ease; 
}
.loader { 
    width: 80px; 
    height: 80px; 
    border-radius: 50%; 
    position: relative; 
    border: 4px solid rgba(255, 255, 255, 0.3); 
    border-top-color: #fff; 
    animation: spin 1s linear infinite; 
}
@keyframes spin { 
    0% { transform: rotate(0deg); } 
    100% { transform: rotate(360deg); } 
}

/* --- Mouse Follower --- */
.mouse-follower { 
    position: fixed; 
    width: 400px; 
    height: 400px; 
    border-radius: 50%; 
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 40%, transparent 70%); 
    pointer-events: none; 
    transform: translate(-50%, -50%); 
    z-index: 1; 
    opacity: 0; 
    transition: opacity 0.3s ease; 
}

/* --- Notification Container --- */
.notification-container { 
    position: fixed; 
    top: 100px; 
    right: 20px; 
    z-index: 1001; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}
.notification { 
    background: var(--card-bg); 
    color: var(--text-color); 
    padding: 15px 20px; 
    border-radius: 10px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); 
    border-left: 4px solid var(--accent-color-2); 
    max-width: 300px; 
    opacity: 0; 
    transform: translateX(100%); 
    animation: slideIn 0.5s forwards; 
}
@keyframes slideIn { 
    to { opacity: 1; transform: translateX(0); } 
}

/* --- Sticky CTA --- */
.sticky-cta { 
    position: fixed; 
    bottom: 20px; 
    left: 50%; 
    transform: translateX(-50%) translateY(100px); 
    background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2)); 
    color: white; 
    padding: 12px 30px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    box-shadow: 0 5px 20px rgba(237, 117, 99, 0.4); 
    z-index: 1000; 
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease; 
}
.sticky-cta.show { 
    transform: translateX(-50%) translateY(0); 
}
.sticky-cta:hover { 
    box-shadow: 0 8px 25px rgba(237, 117, 99, 0.6); 
}

/* --- Skip Link --- */
.skip-link { 
    position: absolute; 
    top: -40px; 
    left: 0; 
    background: var(--primary-color); 
    color: white; 
    padding: 8px; 
    text-decoration: none; 
    border-radius: 0 0 4px 0; 
    z-index: 100; 
}
.skip-link:focus { 
    top: 0; 
}

/* --- Background Animation --- */
.bg-animation { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: -1; 
    overflow: hidden; 
}
.bg-animation span { 
    position: absolute; 
    display: block; 
    width: 20px; 
    height: 20px; 
    background: rgba(102, 126, 234, 0.1); 
    animation: move 25s linear infinite; 
    bottom: -150px; 
    border-radius: 50%; 
}
.bg-animation span:nth-child(1) { 
    left: 25%; 
    width: 80px; 
    height: 80px; 
    animation-delay: 0s; 
    background: rgba(102, 126, 234, 0.15); 
}
.bg-animation span:nth-child(2) { 
    left: 10%; 
    width: 20px; 
    height: 20px; 
    animation-delay: 2s; 
    animation-duration: 12s; 
    background: rgba(118, 75, 162, 0.15); 
}
.bg-animation span:nth-child(3) { 
    left: 70%; 
    width: 20px; 
    height: 20px; 
    animation-delay: 4s; 
    background: rgba(237, 117, 99, 0.15); 
}
.bg-animation span:nth-child(4) { 
    left: 40%; 
    width: 60px; 
    height: 60px; 
    animation-delay: 0s; 
    animation-duration: 18s; 
    background: rgba(95, 207, 128, 0.15); 
}
.bg-animation span:nth-child(5) { 
    left: 65%; 
    width: 20px; 
    height: 20px; 
    animation-delay: 0s; 
    background: rgba(247, 183, 49, 0.15); 
}
.bg-animation span:nth-child(6) { 
    left: 75%; 
    width: 110px; 
    height: 110px; 
    animation-delay: 3s; 
    background: rgba(102, 126, 234, 0.1); 
}
.bg-animation span:nth-child(7) { 
    left: 35%; 
    width: 150px; 
    height: 150px; 
    animation-delay: 7s; 
    background: rgba(118, 75, 162, 0.08); 
}
.bg-animation span:nth-child(8) { 
    left: 50%; 
    width: 25px; 
    height: 25px; 
    animation-delay: 15s; 
    animation-duration: 45s; 
    background: rgba(237, 117, 99, 0.1); 
}
.bg-animation span:nth-child(9) { 
    left: 20%; 
    width: 15px; 
    height: 15px; 
    animation-delay: 2s; 
    animation-duration: 35s; 
    background: rgba(95, 207, 128, 0.1); 
}
.bg-animation span:nth-child(10) { 
    left: 85%; 
    width: 150px; 
    height: 150px; 
    animation-delay: 0s; 
    animation-duration: 11s; 
    background: rgba(247, 183, 49, 0.09); 
}
@keyframes move { 
    0% { transform: translateY(0) rotate(0deg); opacity: 1; } 
    100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; } 
}

/* --- Navigation --- */
nav { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    padding: 15px 50px; 
    background: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px); 
    z-index: 1000; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); 
    transition: all var(--transition-speed) ease; 
}
body.dark-mode nav { 
    background: rgba(26, 26, 46, 0.9); 
}
.nav-logo { 
    display: flex; 
    align-items: center; 
    justify-content: center;
}
.nav-logo-img {
    width: 180px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    transition: all var(--transition-speed) ease;
}
.nav-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.6));
}
.nav-links { 
    display: flex; 
    list-style: none; 
}
.nav-links li { 
    margin: 0 15px; 
}
.nav-links a { 
    color: var(--text-color); 
    text-decoration: none; 
    font-weight: 600; 
    position: relative; 
    transition: color var(--transition-speed) ease; 
}
.nav-links a:hover { 
    color: var(--primary-color); 
}
.nav-links a::after { 
    content: ''; 
    position: absolute; 
    bottom: -5px; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); 
    transition: width var(--transition-speed) ease; 
}
.nav-links a:hover::after { 
    width: 100%; 
}
.nav-actions { 
    display: flex; 
    align-items: center; 
}
.nav-actions a { 
    margin-left: 15px; 
    padding: 8px 20px; 
    border-radius: 30px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: all var(--transition-speed) ease; 
}
.login-btn { 
    background: transparent; 
    color: var(--primary-color); 
    border: 2px solid var(--primary-color); 
}
.login-btn:hover { 
    background: rgba(102, 126, 234, 0.1); 
    transform: translateY(-2px); 
}
.register-btn { 
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); 
    color: #ffffff; 
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4); 
}
.register-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6); 
}
.theme-toggle { 
    margin-left: 15px; 
}
.theme-toggle button { 
    background: transparent; 
    border: none; 
    color: var(--primary-color); 
    font-size: 1.2rem; 
    cursor: pointer; 
    padding: 8px; 
    border-radius: 50%; 
    transition: all var(--transition-speed) ease; 
}
.theme-toggle button:hover { 
    background: rgba(102, 126, 234, 0.1); 
}

/* --- Hero Section --- */
.hero { 
    margin-top: 80px; 
    padding: 150px 0; 
    text-align: center; 
    position: relative; 
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://ik.imagekit.io/feug8fcfm/JOKI55/Gemini_Generated_Image_4jfhx94jfhx94jfh.png') center/cover no-repeat; 
    overflow: hidden; 
    transition: all var(--transition-speed) ease;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-content { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    position: relative; 
    z-index: 2; 
}
.hero-badge { 
    display: inline-block; 
    background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2)); 
    color: white; 
    padding: 8px 20px; 
    border-radius: 30px; 
    font-weight: 700; 
    font-size: 0.9rem; 
    margin-bottom: 20px; 
    box-shadow: 0 5px 15px rgba(237, 117, 99, 0.3); 
    animation: pulse 2s infinite; 
}
@keyframes pulse { 
    0% { transform: scale(1); } 
    50% { transform: scale(1.05); } 
    100% { transform: scale(1); } 
}
.hero-title { 
    font-family: 'Orbitron', sans-serif; 
    font-size: 4rem; 
    font-weight: 900; 
    margin-bottom: 20px; 
    background: linear-gradient(90deg, #ffffff, #f0f0f0); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    position: relative; 
    display: inline-block; 
    height: 1.2em; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-subtitle { 
    font-size: 1.5rem; 
    color: #ffffff; 
    margin-bottom: 40px; 
    font-weight: 400; 
    max-width: 800px; 
    margin-left: auto; 
    margin-right: auto; 
    transition: color var(--transition-speed) ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.hero-buttons { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    margin-bottom: 50px; 
    flex-wrap: wrap; 
}
.hero-btn { 
    padding: 15px 40px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 1.1rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    position: relative; 
    overflow: hidden; 
    margin-bottom: 15px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
    transition: all var(--transition-speed) ease; 
}
.hero-btn::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: -100%; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); 
    transition: left 0.5s; 
}
.hero-btn:hover::before { 
    left: 100%; 
}
.hero-btn i { 
    margin-right: 8px; 
}
.btn-primary { 
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color)); 
    color: #ffffff; 
}
.btn-primary:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4); 
}
.btn-secondary { 
    background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2)); 
    color: #ffffff; 
}
.btn-secondary:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(237, 117, 99, 0.4); 
}
.btn-download { 
    background: linear-gradient(90deg, #5fcf80, #43a047); 
    color: #ffffff; 
}
.btn-download:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(95, 207, 128, 0.4); 
}
.btn-telegram { 
    background: linear-gradient(90deg, #2196f3, #0d8bf2); 
    color: #ffffff; 
}
.btn-telegram:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(33, 150, 243, 0.4); 
}

/* --- Share Buttons --- */
.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}
.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.share-button:hover {
    transform: translateY(-3px);
}
.share-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}
.share-whatsapp:hover {
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
}
.share-telegram {
    background: linear-gradient(135deg, #2196f3, #0d8bf2);
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}
.share-telegram:hover {
    box-shadow: 0 6px 15px rgba(33, 150, 243, 0.5);
}

/* --- Scroll Animations --- */
.animate-on-scroll { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; 
}
.animate-on-scroll.is-visible { 
    opacity: 1; 
    transform: translateY(0); 
}
.animate-on-scroll.from-left { 
    transform: translateX(-50px); 
}
.animate-on-scroll.from-left.is-visible { 
    transform: translateX(0); 
}
.animate-on-scroll.from-right { 
    transform: translateX(50px); 
}
.animate-on-scroll.from-right.is-visible { 
    transform: translateX(0); 
}

/* --- Stats Section --- */
.stats-section { 
    padding: 50px 0; 
    background: var(--bg-color); 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); 
    transition: all var(--transition-speed) ease; 
}
body.dark-mode .stats-section { 
    background: #1a1a2e; 
}
.stats-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    display: flex; 
    justify-content: space-around; 
    flex-wrap: wrap; 
}
.stat-item { 
    text-align: center; 
    padding: 20px; 
    flex: 1; 
    min-width: 200px; 
}
.stat-number { 
    font-family: 'Orbitron', sans-serif; 
    font-size: 3rem; 
    font-weight: 800; 
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    margin-bottom: 10px; 
}
.stat-label { 
    font-size: 1.1rem; 
    color: #555; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 600; 
    transition: color var(--transition-speed) ease; 
}
body.dark-mode .stat-label { 
    color: #b0b0b0; 
}

/* --- Games Section --- */
.games-section { 
    padding: 80px 0; 
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05)); 
    transition: all var(--transition-speed) ease; 
}
.section-header { 
    text-align: center; 
    margin-bottom: 50px; 
}
.section-title { 
    font-family: 'Orbitron', sans-serif; 
    font-size: 2.5rem; 
    font-weight: 800; 
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    margin-bottom: 15px; 
    position: relative; 
    display: inline-block; 
}
.section-title::after { 
    content: ''; 
    position: absolute; 
    bottom: -10px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 80px; 
    height: 3px; 
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); 
}
.section-subtitle { 
    font-size: 1.1rem; 
    color: #555; 
    max-width: 700px; 
    margin: 0 auto; 
    transition: color var(--transition-speed) ease; 
}
body.dark-mode .section-subtitle { 
    color: #b0b0b0; 
}
.games-grid { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}
.game-card { 
    background: var(--card-bg); 
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    position: relative; 
    transition: all var(--transition-speed) ease; 
}
body.dark-mode .game-card { 
    background: #1a1a2e; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); 
}
.game-card:hover { 
    transform: translateY(-15px); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); 
}
.game-image { 
    height: 200px; 
    overflow: hidden; 
    position: relative; 
}
.game-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
}
.game-card:hover .game-image img { 
    transform: scale(1.1); 
}
.game-badge { 
    position: absolute; 
    top: 15px; 
    right: 15px; 
    padding: 5px 15px; 
    border-radius: 30px; 
    font-weight: 700; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
}
.badge-hot { 
    background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2)); 
    color: white; 
}
.badge-new { 
    background: linear-gradient(90deg, #5fcf80, #43a047); 
    color: white; 
}
.badge-popular { 
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); 
    color: white; 
}
.game-content { 
    padding: 20px; 
}
.game-title { 
    font-size: 1.3rem; 
    font-weight: 700; 
    color: var(--text-color); 
    margin-bottom: 10px; 
    transition: color var(--transition-speed) ease; 
}
.game-description { 
    color: #666; 
    margin-bottom: 15px; 
    font-size: 0.9rem; 
    line-height: 1.5; 
    transition: color var(--transition-speed) ease; 
}
body.dark-mode .game-description { 
    color: #b0b0b0; 
}
.game-stats { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 15px; 
}
.game-stat { 
    display: flex; 
    align-items: center; 
    color: #555; 
    font-size: 0.9rem; 
    transition: color var(--transition-speed) ease; 
}
body.dark-mode .game-stat { 
    color: #b0b0b0; 
}
.game-stat i { 
    margin-right: 5px; 
    color: var(--primary-color); 
}
.game-button { 
    width: 100%; 
    padding: 12px; 
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color)); 
    color: #ffffff; 
    border: none; 
    border-radius: 8px; 
    font-weight: 700; 
    text-transform: uppercase; 
    cursor: pointer; 
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3); 
    transition: all var(--transition-speed) ease; 
}
.game-button:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5); 
}

/* --- Features Section --- */
.features-section { 
    padding: 80px 0; 
    background: var(--bg-color); 
    transition: all var(--transition-speed) ease; 
}
body.dark-mode .features-section { 
    background: #1a1a2e; 
}
.features-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
}
.feature-card { 
    background: linear-gradient(135deg, #f5f7fa, #e4edf5); 
    border-radius: 15px; 
    padding: 30px; 
    text-align: center; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); 
    transition: all var(--transition-speed) ease; 
}
body.dark-mode .feature-card { 
    background: linear-gradient(135deg, #1a1a2e, #16213e); 
}
.feature-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); 
}
.feature-icon { 
    width: 80px; 
    height: 80px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 20px; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); 
}
.icon-security { 
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); 
}
.icon-rtp { 
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2)); 
}
.icon-bonus { 
    background: linear-gradient(135deg, #5fcf80, #43a047); 
}
.icon-support { 
    background: linear-gradient(135deg, #2196f3, #0d8bf2); 
}
.feature-icon i { 
    font-size: 2rem; 
    color: #ffffff; 
}
.feature-title { 
    font-size: 1.3rem; 
    font-weight: 700; 
    color: var(--text-color); 
    margin-bottom: 15px; 
    transition: color var(--transition-speed) ease; 
}
.feature-description { 
    color: #666; 
    line-height: 1.6; 
    transition: color var(--transition-speed) ease; 
}
body.dark-mode .feature-description { 
    color: #b0b0b0; 
}

/* --- Testimonials Section --- */
.testimonials-section { 
    padding: 80px 0; 
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05)); 
    transition: all var(--transition-speed) ease; 
}
.testimonials-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}
.testimonials-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}
.testimonial-card { 
    background: var(--card-bg); 
    border-radius: 15px; 
    padding: 30px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); 
    position: relative; 
    transition: all var(--transition-speed) ease; 
}
body.dark-mode .testimonial-card { 
    background: #1a1a2e; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); 
}
.testimonial-card::before { 
    content: '"'; 
    position: absolute; 
    top: 20px; 
    left: 20px; 
    font-size: 4rem; 
    color: rgba(102, 126, 234, 0.1); 
    font-family: serif; 
}
.testimonial-text { 
    color: #555; 
    margin-bottom: 20px; 
    line-height: 1.6; 
    font-style: italic; 
    transition: color var(--transition-speed) ease; 
}
body.dark-mode .testimonial-text { 
    color: #b0b0b0; 
}
.testimonial-author { 
    display: flex; 
    align-items: center; 
}
.author-avatar { 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-right: 15px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
}
.avatar-1 { 
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); 
}
.avatar-2 { 
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2)); 
}
.avatar-3 { 
    background: linear-gradient(135deg, #5fcf80, #43a047); 
}
.author-avatar i { 
    font-size: 1.5rem; 
    color: #ffffff; 
}
.author-info { 
    flex: 1; 
}
.author-name { 
    font-weight: 700; 
    color: var(--text-color); 
    transition: color var(--transition-speed) ease; 
}
.author-date { 
    font-size: 0.9rem; 
    color: #888; 
}
.testimonial-rating { 
    color: var(--accent-color-2); 
    margin-bottom: 15px; 
}

/* --- Community Section --- */
.community-section { 
    padding: 80px 0; 
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(13, 139, 242, 0.1)); 
    text-align: center; 
    position: relative; 
    overflow: hidden; 
    transition: all var(--transition-speed) ease; 
}
.community-section::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%232196f3" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>'); 
    background-size: cover; 
    opacity: 0.3; 
}
.community-content { 
    position: relative; 
    z-index: 1; 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 0 20px; 
}
.community-title { 
    font-family: 'Orbitron', sans-serif; 
    font-size: 2.5rem; 
    font-weight: 800; 
    background: linear-gradient(90deg, #2196f3, #0d8bf2); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    margin-bottom: 20px; 
}
.community-description { 
    font-size: 1.1rem; 
    color: #555; 
    margin-bottom: 30px; 
    line-height: 1.6; 
    transition: color var(--transition-speed) ease; 
}
body.dark-mode .community-description { 
    color: #b0b0b0; 
}
.community-buttons { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap; 
}
.community-button { 
    display: inline-block; 
    padding: 15px 40px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 1.1rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    position: relative; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 15px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    transition: all var(--transition-speed) ease; 
}
.community-button::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: -100%; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); 
    transition: left 0.5s; 
}
.community-button:hover::before { 
    left: 100%; 
}
.community-button i { 
    margin-right: 8px; 
}

/* --- FAQ Section --- */
.faq-section {
    padding: 80px 0;
    background: var(--bg-color);
    transition: all var(--transition-speed) ease;
}

body.dark-mode .faq-section {
    background: #1a1a2e;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed) ease;
}

body.dark-mode .faq-item {
    background: #1a1a2e;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    color: var(--text-color);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

body.dark-mode .faq-answer {
    color: #b0b0b0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* --- CTA Section --- */
.cta-section { 
    padding: 80px 0; 
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1)); 
    text-align: center; 
    position: relative; 
    overflow: hidden; 
    transition: all var(--transition-speed) ease; 
}
.cta-section::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23667eea" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>'); 
    background-size: cover; 
    opacity: 0.3; 
}
.cta-content { 
    position: relative; 
    z-index: 1; 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 0 20px; 
}
.cta-title { 
    font-family: 'Orbitron', sans-serif; 
    font-size: 2.5rem; 
    font-weight: 800; 
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    margin-bottom: 20px; 
}
.cta-description { 
    font-size: 1.1rem; 
    color: #555; 
    margin-bottom: 30px; 
    line-height: 1.6; 
    transition: color var(--transition-speed) ease; 
}
body.dark-mode .cta-description { 
    color: #b0b0b0; 
}
.cta-button { 
    display: inline-block; 
    padding: 15px 40px; 
    background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2)); 
    color: #ffffff; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 1.1rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    box-shadow: 0 10px 25px rgba(237, 117, 99, 0.3); 
    transition: all var(--transition-speed) ease; 
}
.cta-button:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(237, 117, 99, 0.5); 
}

/* --- Footer --- */
footer { 
    background: var(--footer-bg); 
    padding: 50px 0 20px; 
    color: #ecf0f1; 
    transition: all var(--transition-speed) ease; 
}
.footer-content { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
    margin-bottom: 30px; 
}
.footer-section h3 { 
    font-family: 'Orbitron', sans-serif; 
    font-size: 1.3rem; 
    font-weight: 700; 
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    margin-bottom: 20px; 
    position: relative; 
    display: inline-block; 
}
.footer-section h3::after { 
    content: ''; 
    position: absolute; 
    bottom: -5px; 
    left: 0; 
    width: 50px; 
    height: 2px; 
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); 
}
.footer-section p { 
    color: #ecf0f1; 
    margin-bottom: 20px; 
    transition: color var(--transition-speed) ease; 
}
.footer-links { 
    list-style: none; 
}
.footer-links li { 
    margin-bottom: 10px; 
}
.footer-links a { 
    color: #ecf0f1; 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    transition: color var(--transition-speed) ease; 
}
.footer-links a:hover { 
    color: var(--primary-color); 
    transform: translateX(5px); 
}
.footer-links i { 
    margin-right: 10px; 
    color: var(--primary-color); 
    font-size: 0.8rem; 
}
.social-links { 
    display: flex; 
    gap: 15px; 
    margin-top: 20px; 
}
.social-links a { 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    background: rgba(255, 255, 255, 0.1); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #ecf0f1; 
    transition: all var(--transition-speed) ease; 
}
.social-links a:hover { 
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); 
    color: #ffffff; 
    transform: translateY(-5px); 
}
.footer-bottom { 
    text-align: center; 
    padding-top: 20px; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    color: #bdc3c7; 
    font-size: 0.9rem; 
    transition: color var(--transition-speed) ease; 
}

/* --- FABs --- */
.fab-container { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    z-index: 1000; 
}
.fab { 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem; 
    color: #ffffff; 
    cursor: pointer; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
    transition: all var(--transition-speed) ease; 
}
.fab:hover { 
    transform: scale(1.1); 
}
.fab-whatsapp { 
    background: linear-gradient(135deg, #25d366, #128c7e); 
}
.fab-whatsapp:hover { 
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6); 
}
.fab-livechat { 
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); 
}
.fab-livechat:hover { 
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.6); 
}

/* --- View Source Modal --- */
.view-source-modal-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.85); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    z-index: 10000; 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.4s ease, visibility 0.4s ease; 
}
.view-source-modal-overlay.is-active { 
    opacity: 1; 
    visibility: visible; 
}
.view-source-modal-content { 
    text-align: center; 
    color: #ffffff; 
    transform: scale(0.8); 
    transition: transform 0.4s ease; 
}
.view-source-modal-overlay.is-active .view-source-modal-content { 
    transform: scale(1); 
}
.view-source-modal-content img { 
    width: 150px; 
    height: auto; 
    margin-bottom: 20px; 
    animation: logo-pulse 2s infinite; 
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
}
@keyframes logo-pulse { 
    0% { transform: scale(1); } 
    50% { transform: scale(1.05); } 
    100% { transform: scale(1); } 
}
.view-source-modal-content p { 
    font-family: 'Orbitron', sans-serif; 
    font-size: 1.5rem; 
    font-weight: 700; 
    margin: 0; 
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
}
.modal-subtitle { 
    font-family: 'Poppins', sans-serif; 
    font-size: 0.9rem !important; 
    font-weight: 400 !important; 
    color: #b0b0b0 !important; 
    margin-top: 10px !important; 
}

/* --- Responsive Design --- */
@media (max-width: 992px) { 
    .hero-title { font-size: 3.5rem; } 
    .nav-links { display: none; } 
    .section-title { font-size: 2rem; } 
}
@media (max-width: 768px) { 
    .hero { padding: 100px 0; }
    .hero-title { font-size: 2.5rem; } 
    .hero-subtitle { font-size: 1.2rem; } 
    .hero-buttons { flex-direction: column; align-items: center; } 
    .hero-btn { width: 100%; max-width: 300px; } 
    .community-buttons { flex-direction: column; align-items: center; } 
    .community-button { width: 100%; max-width: 300px; } 
    .stats-container { flex-direction: column; } 
    .stat-item { margin-bottom: 20px; } 
    .games-grid { grid-template-columns: 1fr; } 
    .features-container { grid-template-columns: 1fr; } 
    .testimonials-grid { grid-template-columns: 1fr; } 
    .footer-content { grid-template-columns: 1fr; } 
    nav { padding: 10px 20px; } 
    .nav-logo-img {
        width: 140px;
        max-height: 35px;
    }
    .fab-container { bottom: 20px; right: 20px; } 
    .fab { width: 50px; height: 50px; font-size: 1.2rem; } 
    .notification-container { right: 10px; top: 80px; } 
    .notification { max-width: 250px; font-size: 0.9rem; } 
}
