/* ========================================
   TOPONEAPKGAMES.COM - MAIN STYLESHEET
   Ultra-Modern Gaming Theme with Neon Effects
   ======================================== */

/* ============= ROOT VARIABLES ============= */
:root {
    /* Colors */
    --primary-bg: #0d0d1a;
    --secondary-bg: #1a1a2e;
    --card-bg: #16213e;
    --accent-purple: #7c3aed;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;
    --accent-yellow: #fbbf24;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --border-color: rgba(124, 58, 237, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-neon: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    
    /* Shadows */
    --shadow-glow: 0 0 20px rgba(124, 58, 237, 0.5);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-neon: 0 0 30px rgba(124, 58, 237, 0.8);
    
    /* Fonts */
    --font-title: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============= GLOBAL STYLES ============= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============= COOKIE CONSENT BANNER ============= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 2px solid var(--accent-purple);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(124, 58, 237, 0.4);
    animation: slideUp 0.5s ease;
    display: none;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 40px;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--accent-cyan);
}

.cookie-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cookie-text a {
    color: var(--accent-purple);
    text-decoration: underline;
}

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

.btn-accept, .btn-decline {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-accept {
    background: var(--gradient-neon);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.8);
}

.btn-decline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
}

.btn-decline:hover {
    border-color: var(--accent-purple);
    color: var(--text-primary);
}

/* ============= ADSENSE PLACEHOLDERS ============= */
.adsense-container {
    text-align: center;
    margin: 20px auto;
}

.adsense-placeholder {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(22, 33, 62, 0.5) 100%);
    border: 2px dashed rgba(124, 58, 237, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============= HEADER & NAVIGATION ============= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 13, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--accent-yellow));
    animation: pulse 2s infinite;
}

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

.logo-text {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
}

/* Search Bar */
.search-container {
    position: relative;
}

.search-input {
    padding: 12px 45px 12px 20px;
    background: var(--secondary-bg);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    width: 300px;
    transition: var(--transition-normal);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-glow);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-cyan);
    pointer-events: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-purple);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Stats Bar */
.stats-bar {
    background: var(--secondary-bg);
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
}

.stats-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--accent-purple);
}

.stat-number {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============= HERO SECTION ============= */
.hero-section {
    position: relative;
    padding: 100px 0;
    background: var(--gradient-primary);
    overflow: hidden;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.5));
}

.hero-subtitle {
    display: block;
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-top: 10px;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-description strong {
    color: var(--accent-yellow);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient-neon);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-bg);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: white;
}

.hero-stat i {
    color: var(--accent-yellow);
    font-size: 1.3rem;
}

/* ============= SECTION STYLES ============= */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.title-icon {
    font-size: 2rem;
    margin-right: 10px;
}

.title-decoration {
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-neon);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ============= PLAY ONLINE SECTION ============= */
.play-online-section {
    background: var(--secondary-bg);
}

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

.online-game-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: var(--transition-normal);
    cursor: pointer;
}

.online-game-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-glow);
}

.game-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
    cursor: pointer;
}

.online-game-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 60px;
    color: var(--accent-cyan);
    margin-bottom: 10px;
}

.play-overlay span {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: white;
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--accent-cyan);
}

.game-info p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.game-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.game-meta i {
    color: var(--accent-purple);
}

/* ============= GAMES SECTION ============= */
.games-section {
    background: var(--primary-bg);
}

/* Category Filter */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 25px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-neon);
    border-color: var(--accent-purple);
    color: white;
    box-shadow: var(--shadow-glow);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.game-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: var(--transition-normal);
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.4);
}

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.game-badge.new {
    background: var(--gradient-neon);
}

.game-image {
    height: 220px;
    overflow: hidden;
}

.game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.game-card:hover .game-placeholder {
    transform: scale(1.1);
}

.game-content {
    padding: 20px;
}

.game-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.game-category {
    margin-bottom: 10px;
}

.category-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.category-badge.action { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.category-badge.arcade { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.category-badge.battle-royale { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.category-badge.puzzle { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.category-badge.racing { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }
.category-badge.rpg { background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%); }
.category-badge.sports { background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%); }
.category-badge.strategy { background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%); }

.game-rating {
    margin-bottom: 10px;
    color: var(--accent-yellow);
    font-size: 1.1rem;
}

.game-rating span {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-left: 5px;
}

.game-downloads {
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.game-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.game-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-download,
.btn-play-pc {
    flex: 1;
    min-width: 130px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-download {
    background: var(--gradient-neon);
    color: white;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-play-pc {
    background: var(--gradient-secondary);
    color: white;
}

.btn-play-pc:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(240, 147, 251, 0.5);
}

.btn-share {
    width: 45px;
    height: 45px;
    background: var(--secondary-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--accent-cyan);
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-share:hover {
    background: var(--accent-cyan);
    color: white;
    border-color: var(--accent-cyan);
}

/* ============= HOW TO PLAY SECTION ============= */
.how-to-play-section {
    background: var(--secondary-bg);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.step-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    position: relative;
    transition: var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-glow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

.step-icon {
    font-size: 4rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.step-card h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--accent-purple);
}

.emulators-section {
    text-align: center;
}

.emulators-section h3 {
    font-family: var(--font-title);
    font-size: 2rem;
    margin-bottom: 30px;
}

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

.emulator-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    transition: var(--transition-normal);
}

.emulator-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}

.emulator-card i {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.emulator-card h4 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.emulator-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============= CATEGORIES SECTION ============= */
.categories-section {
    background: var(--primary-bg);
}

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

.category-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-glow);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.category-card h3 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.game-count {
    color: var(--accent-cyan);
    font-weight: 600;
}

/* ============= ABOUT SECTION ============= */
.about-section {
    background: var(--secondary-bg);
}

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

.about-content h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    transition: var(--transition-normal);
}

.feature-item:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.95rem;
    margin: 0;
}

/* ============= LEGAL SECTIONS ============= */
.legal-section {
    background: var(--primary-bg);
    padding: 60px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
}

.legal-content h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--accent-cyan);
}

.last-updated {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 30px;
}

.legal-content h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--accent-purple);
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style-position: inside;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content a {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--accent-purple);
}

/* ============= FOOTER ============= */
.footer {
    background: var(--secondary-bg);
    border-top: 2px solid var(--border-color);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--accent-cyan);
    color: white;
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom a {
    color: var(--accent-purple);
}

/* ============= MODAL ============= */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--card-bg);
    border: 2px solid var(--accent-purple);
    border-radius: 15px;
    padding: 40px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

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

.online-modal-content {
    max-width: 90%;
    height: 90vh;
    padding: 20px;
}

#online-game-container {
    width: 100%;
    height: 100%;
}

#game-iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--accent-cyan);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-bg);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.close-modal:hover {
    background: var(--accent-cyan);
    color: white;
    transform: rotate(90deg);
}

/* Share Buttons in Modal */
.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.share-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.telegram { background: #0088cc; }

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* ============= TOAST NOTIFICATION ============= */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-neon);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-glow);
    font-family: var(--font-body);
    font-weight: 600;
    z-index: 10001;
    display: none;
    animation: slideInRight 0.3s ease;
}

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

.toast.show {
    display: block;
}

/* ============= RESPONSIVE DESIGN ============= */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-bg);
        flex-direction: column;
        padding: 20px;
        border-top: 2px solid var(--border-color);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .search-input {
        width: 200px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-accept, .btn-decline {
        width: 100%;
    }
    
    .stats-wrapper {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .online-games-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        display: none;
    }
    
    .search-input {
        width: 150px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .adsense-placeholder {
        width: 100% !important;
        height: auto !important;
        min-height: 100px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .online-modal-content {
        width: 95%;
        height: 80vh;
    }
}

/* ============= SCROLLBAR STYLING ============= */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-neon);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

/* ============= UTILITY CLASSES ============= */
.hidden {
    display: none !important;
}

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

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ============= ANIMATIONS ============= */
@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(124, 58, 237, 0.8), 0 0 30px rgba(6, 182, 212, 0.6);
    }
}