/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Orbitron', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Prevent body scroll when mobile menu is open */
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

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

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00c9ff, #92fe9d, #00c9ff);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: #0a0a0a;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(10, 10, 10, 0.3);
    border-top: 4px solid #0a0a0a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.loading-progress {
    width: 80%;
    max-width: 300px;
    margin: 20px auto 0;
}

.progress-bar {
    height: 8px;
    background: rgba(10, 10, 10, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00c9ff, #92fe9d);
    width: 0%;
    animation: progress 3s ease-in-out infinite;
    border-radius: 4px;
}

.progress-text {
    font-size: 0.9rem;
    color: #0a0a0a;
    font-weight: 500;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ===== HEADER STYLES ===== */
.header {
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 201, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #00c9ff;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    transition: all 0.3s ease;
}

.logo-section .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #00c9ff;
}

.logo-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
    text-shadow: 0 0 10px #00c9ff;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #00c9ff, #92fe9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: font-size 0.3s ease;
    text-shadow: 0 0 15px rgba(0, 201, 255, 0.5);
}

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

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

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Orbitron', sans-serif;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(45deg, #00c9ff, #92fe9d);
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 201, 255, 0.4);
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(20, 20, 30, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 201, 255, 0.3);
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    border: 1px solid #00c9ff;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile dropdown active state */
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(0, 201, 255, 0.2);
    color: #00c9ff;
    padding-left: 30px;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-icon {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Search Section */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 10px 40px 10px 15px;
    border: 1px solid rgba(0, 201, 255, 0.3);
    border-radius: 25px;
    background: rgba(10, 10, 20, 0.8);
    color: #e0e0e0;
    font-size: 1rem;
    width: 250px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #00c9ff;
    box-shadow: 0 0 0 3px rgba(0, 201, 255, 0.1);
    width: 300px;
}

.search-btn {
    position: absolute;
    right: 5px;
    background: transparent;
    border: none;
    color: #00c9ff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: rgba(0, 201, 255, 0.2);
    transform: scale(1.1);
}

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

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #00c9ff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation - Transform to X */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-search-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #00c9ff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-search-toggle:hover {
    background: rgba(0, 201, 255, 0.1);
}

.mobile-search-toggle .search-line {
    position: absolute;
    width: 3px;
    height: 10px;
    background: #00c9ff;
    transform: rotate(145deg);
    top: 22px;
    left: 22px;
}

.mobile-search-toggle .search-circle {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 3px solid #00c9ff;
    border-radius: 50%;
    top: 10px;
    left: 10px;
}

/* ===== HERO BANNER SECTION (gamesyncro Cyber Style) ===== */
.hero-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0, 201, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 201, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.banner-content {
    padding-right: 20px;
}

.neon-title-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.neon-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.neon-highlight {
    color: #00c9ff;
    text-shadow: 0 0 10px #00c9ff, 0 0 20px #00c9ff;
    animation: gamesyncro 2s infinite alternate;
}

@keyframes gamesyncro {
    0% { text-shadow: 0 0 10px #00c9ff, 0 0 20px #00c9ff; }
    100% { text-shadow: 0 0 15px #00c9ff, 0 0 30px #00c9ff, 0 0 40px #00c9ff; }
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 0%, rgba(0, 201, 255, 0.1) 50%, transparent 100%);
    animation: scan 4s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.banner-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(45deg, #00c9ff, #92fe9d);
    color: #0a0a0a;
    box-shadow: 0 10px 25px rgba(0, 201, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 201, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Cyber Carousel */
.cyber-carousel {
    position: relative;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 300px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.slide-content {
    display: flex;
    height: 100%;
    background: rgba(30, 30, 40, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 201, 255, 0.2);
    border: 1px solid rgba(0, 201, 255, 0.3);
}

.slide-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #00c9ff, #92fe9d);
}

.slide-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.slide-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: 'Orbitron', sans-serif;
}

.slide-description {
    color: #a0a0a0;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.slide-category {
    background: linear-gradient(45deg, #00c9ff, #92fe9d);
    color: #0a0a0a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.slide-play-btn {
    background: linear-gradient(45deg, #00c9ff, #92fe9d);
    color: #0a0a0a;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 201, 255, 0.3);
}

.slide-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 201, 255, 0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 201, 255, 0.2);
    border: 1px solid #00c9ff;
    color: #00c9ff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0, 201, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 201, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #00c9ff;
    transform: scale(1.2);
    box-shadow: 0 0 10px #00c9ff;
}

/* ===== GAME CATEGORIES SECTION ===== */
.game-categories {
    padding: 80px 0;
    background: rgba(10, 10, 20, 0.8);
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    color: #00c9ff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'Orbitron', sans-serif;
}

.title-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto 20px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 201, 255, 0.1);
    color: #00c9ff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 201, 255, 0.3);
}

.view-all-btn:hover {
    background: rgba(0, 201, 255, 0.2);
    transform: translateY(-2px);
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-tab {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-tab:hover,
.category-tab.active {
    background: linear-gradient(45deg, #00c9ff, #92fe9d);
    color: #0a0a0a;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 201, 255, 0.3);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.game-card {
    background: rgba(30, 30, 40, 0.8);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 201, 255, 0.2);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 201, 255, 0.2);
    border-color: rgba(0, 201, 255, 0.5);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

.game-info {
    padding: 20px;
}

.game-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 10px;
    line-height: 1.3;
}

.game-description {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.game-category {
    background: linear-gradient(45deg, #00c9ff, #92fe9d);
    color: #0a0a0a;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffc107;
    font-weight: 600;
}

.play-btn {
    width: 100%;
    background: linear-gradient(45deg, #00c9ff, #92fe9d);
    color: #0a0a0a;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 201, 255, 0.3);
}

/* ===== LOAD MORE SECTION ===== */
.load-more-section {
    text-align: center;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-outline {
    background: transparent;
    color: #00c9ff;
    border: 2px solid #00c9ff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline:hover {
    background: rgba(0, 201, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 201, 255, 0.2);
}

/* ===== POPULAR GAMES SECTION ===== */
.popular-games {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.popular-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-top: 40px;
}

.popular-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.popular-card {
    min-width: 320px;
    background: rgba(30, 30, 40, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(0, 201, 255, 0.2);
}

.popular-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 201, 255, 0.3);
    border-color: rgba(0, 201, 255, 0.5);
}

.popular-card::before {
    content: '🔥';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    z-index: 2;
    animation: pulse 2s infinite;
}

.popular-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-card:hover .popular-image {
    transform: scale(1.1);
}

.popular-info {
    padding: 20px;
}

.popular-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 10px;
    line-height: 1.3;
}

.popular-category {
    background: linear-gradient(45deg, #00c9ff, #92fe9d);
    color: #0a0a0a;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.popular-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #a0a0a0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #00c9ff, #92fe9d);
    color: #0a0a0a;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* ===== NEW GAMES SECTION ===== */
.new-games {
    padding: 80px 0;
    background: rgba(10, 10, 20, 0.8);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 25px;
}

.masonry-card {
    background: rgba(30, 30, 40, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 201, 255, 0.2);
}

.masonry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 201, 255, 0.3);
    border-color: rgba(0, 201, 255, 0.5);
}

.masonry-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.masonry-card:hover .masonry-image {
    transform: scale(1.05);
}

.masonry-info {
    padding: 15px;
}

.masonry-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 8px;
    line-height: 1.3;
}

.masonry-category {
    background: rgba(0, 201, 255, 0.2);
    color: #00c9ff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    backdrop-filter: blur(10px);
}







/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== CYBER FOOTER ===== */
.cyber-footer {
    position: relative;
    background: #0a0a14;
    color: #e0e0e0;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0, 201, 255, 0.2);
    overflow: hidden;
}

.cyber-grid-footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0, 201, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 201, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.cyber-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cyber-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cyber-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cyber-logo-icon {
    font-size: 2rem;
    color: #00c9ff;
    animation: pulse 2s infinite;
}

.cyber-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00c9ff;
    font-family: 'Orbitron', sans-serif;
}

.cyber-description {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cyber-stats {
    display: flex;
    gap: 30px;
}

.cyber-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00c9ff;
}

.stat-label {
    font-size: 0.8rem;
    color: #a0a0a0;
}

.cyber-links-section, .cyber-categories-section, .cyber-social-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cyber-links-title, .cyber-categories-title, .cyber-social-title, .cyber-info-title {
    color: #00c9ff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Orbitron', sans-serif;
}

.cyber-links, .cyber-category-links, .cyber-social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cyber-links a, .cyber-category-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cyber-links a:hover, .cyber-category-links a:hover {
    color: #00c9ff;
    transform: translateX(5px);
}

.cyber-social-links {
    flex-direction: row;
    gap: 15px;
}

.cyber-social-link {
    color: #00c9ff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cyber-social-link:hover {
    transform: scale(1.2) rotate(10deg);
    color: #92fe9d;
}

.cyber-contact {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 201, 255, 0.1);
}

.cyber-contact p {
    color: #a0a0a0;
    margin: 5px 0;
    font-size: 0.9rem;
}

.cyber-footer-bottom {
    border-top: 1px solid rgba(0, 201, 255, 0.1);
    padding-top: 20px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cyber-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cyber-copyright {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
}

.cyber-bottom-links {
    display: flex;
    gap: 20px;
}

.cyber-bottom-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cyber-bottom-links a:hover {
    color: #00c9ff;
}

/* Additional Footer Styles for Other Pages */
.cyber-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cyber-logo:hover {
    transform: scale(1.05);
}

.cyber-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 201, 255, 0.5));
}

.cyber-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00c9ff, #92fe9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cyber-nav-section,
.cyber-info-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cyber-section-title {
    color: #00c9ff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cyber-nav-links,
.cyber-info-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cyber-nav-links li a,
.cyber-info-links li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cyber-nav-links li a:hover,
.cyber-info-links li a:hover {
    color: #92fe9d;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(146, 254, 157, 0.5);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #00c9ff, #92fe9d);
    color: #0a0a0a;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 201, 255, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 201, 255, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .banner-container {
        gap: 40px;
        padding: 0 15px;
    }

    .slide-content {
        padding: 25px;
        gap: 25px;
    }

    .banner-title {
        font-size: 3.2rem;
    }
    
    .neon-title {
        font-size: 2.8rem;
    }
    
    .banner-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .banner-content {
        padding-right: 0;
    }
    
    .banner-buttons {
        justify-content: center;
    }
    

    
    .cyber-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cyber-social-links {
        justify-content: center;
    }
    
    .cyber-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cyber-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Global Mobile Width Control */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .nav-container {
        display: grid;
        grid-template-columns: 50px 1fr 50px;
        grid-template-rows: auto auto auto;
        align-items: center;
        gap: 10px;
        padding: 0 10px;
        height: 60px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .mobile-menu-toggle {
        display: flex;
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        align-self: center;
    }

    .logo-section {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        align-self: center;
    }

    .mobile-search-toggle {
        display: block;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        align-self: center;
    }

    .banner-buttons{
        justify-content: center;
    }

    /* Hero Banner Mobile */
    .hero-banner {
        padding: 60px 0;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .banner-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
        text-align: center;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .banner-content {
        order: 2;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        padding: 0 5px;
    }

    .banner-featured {
        order: 1;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .neon-title {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .neon-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .neon-stats {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
    }

    .neon-stat {
        min-width: auto;
    }

    .neon-cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .neon-btn {
        width: 100%;
        max-width: 250px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 60px; /* Header height */
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 20, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 201, 255, 0.3);
        z-index: 999; /* Below header */
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        height: calc(100vh - 70px); /* Full height minus header */
        pointer-events: none;
        height: 100vh;
    }

    .nav-menu.active {
        display: block;
        transform: translateX(0);
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .search-section {
        display: none;
        position: fixed;
        top: 60px; /* Header height */
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 20, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 201, 255, 0.3);
        z-index: 999;
        padding: 20px;
        transform: translateY(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        height: calc(100vh - 70px); /* Full height minus header */
        pointer-events: none;
    }

    .search-section.active {
        display: block;
        transform: translateY(0);
        pointer-events: auto;
    }

    .search-container {
        max-width: 100%;
    }

    .search-input {
        width: 100%;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .section-title {
        font-size: 2rem;
    }
    
    .neon-title {
        font-size: 2.2rem;
    }
    
    .cyber-stats {
        flex-direction: column;
        gap: 15px;
    }

    /* Cyber Carousel Mobile */
    .cyber-carousel {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding: 0 5px;
        box-sizing: border-box;
    }

    .carousel-container {
        width: 100%;
        max-width: 100%;
        height: 250px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .slide-content {
        flex-direction: column;
        height: 100%;
    }

    .slide-image {
        flex: 0 0 120px;
        width: 100%;
    }

    .slide-info {
        flex: 1;
        padding: 15px;
        text-align: center;
    }

    .slide-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .slide-description {
        font-size: 0.8rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .slide-play-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
    padding: 100px 0 60px;
    min-height: calc(100vh - 70px);
}

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

.contact-title {
    font-size: 3rem;
    background: linear-gradient(45deg, #00c9ff, #92fe9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Contact Methods Grid */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-method {
    background: rgba(10, 10, 20, 0.6);
    border: 2px solid rgba(0, 201, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.contact-method:hover::before {
    left: 100%;
}

.contact-method:hover {
    border-color: #00c9ff;
    box-shadow: 0 0 30px rgba(0, 201, 255, 0.4);
    transform: translateY(-5px);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 201, 255, 0.5));
}

.contact-method h3 {
    color: #00c9ff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-method p {
    color: #b0b0b0;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-link {
    color: #92fe9d;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #00c9ff;
    text-shadow: 0 0 10px rgba(0, 201, 255, 0.8);
}

/* Contact Form Section */
.contact-form-section {
    background: rgba(10, 10, 20, 0.6);
    border: 2px solid rgba(0, 201, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-form-section h2 {
    color: #00c9ff;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: #92fe9d;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 201, 255, 0.3);
    border-radius: 10px;
    padding: 12px 15px;
    color: #e0e0e0;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00c9ff;
    box-shadow: 0 0 15px rgba(0, 201, 255, 0.3);
    background: rgba(0, 0, 0, 0.6);
}

/* Form Validation States */
.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #92fe9d;
    box-shadow: 0 0 10px rgba(146, 254, 157, 0.3);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #ff4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

.field-error {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: slideDown 0.3s ease;
}

.field-error::before {
    content: '⚠️';
}

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

/* Success Message */
.success-message {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 10000;
    animation: slideInRight 0.5s ease;
}

.success-content {
    background: linear-gradient(135deg, rgba(146, 254, 157, 0.95), rgba(0, 201, 255, 0.95));
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(146, 254, 157, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
    color: #0a0a14;
    font-weight: 600;
    max-width: 400px;
}

.success-icon {
    font-size: 1.5rem;
}

.success-text {
    flex: 1;
}

.success-close {
    background: rgba(10, 10, 20, 0.2);
    border: none;
    color: #0a0a14;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.success-close:hover {
    background: rgba(10, 10, 20, 0.4);
    transform: rotate(90deg);
}

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

/* Error Message (existing, enhanced) */
.error-message {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 10000;
    animation: slideInRight 0.5s ease;
}

.error-content {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.95), rgba(255, 100, 100, 0.95));
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 600;
    max-width: 400px;
}

.error-icon {
    font-size: 1.5rem;
}

.error-text {
    flex: 1;
}

.error-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.error-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    min-height: 400px;
    grid-column: 1 / -1;
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

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

.empty-title {
    font-size: 2rem;
    color: #00c9ff;
    margin-bottom: 15px;
    font-weight: 700;
}

.empty-message {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.6;
}

.empty-action {
    margin-top: 10px;
}

/* Lazy Loading Images */
img[loading="lazy"] {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img.lazy-loading {
    opacity: 0.5;
    background: linear-gradient(90deg, rgba(0, 201, 255, 0.1) 25%, rgba(146, 254, 157, 0.1) 50%, rgba(0, 201, 255, 0.1) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

img.lazy-loaded {
    opacity: 1;
}

img.lazy-error {
    opacity: 0.3;
    filter: grayscale(100%);
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #00c9ff;
}

.submit-btn {
    margin-top: 10px;
    width: 100%;
    max-width: 300px;
    align-self: center;
}

/* FAQ Section */
.faq-section {
    background: rgba(10, 10, 20, 0.6);
    border: 2px solid rgba(0, 201, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
}

.faq-section h2 {
    color: #00c9ff;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 201, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    border-color: #00c9ff;
    box-shadow: 0 0 20px rgba(0, 201, 255, 0.2);
}

.faq-item.active {
    border-color: #92fe9d;
    box-shadow: 0 0 25px rgba(146, 254, 157, 0.3);
}

.faq-item h3 {
    color: #92fe9d;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item h3::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: #00c9ff;
}

.faq-item.active h3::after {
    transform: rotate(180deg);
}

.faq-item p {
    color: #b0b0b0;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active p {
    max-height: 500px;
    margin-top: 10px;
}

/* Social Section */
.social-section {
    text-align: center;
}

.social-section h2 {
    color: #00c9ff;
    margin-bottom: 15px;
    font-size: 2rem;
}

.social-section p {
    color: #b0b0b0;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.social-link-large {
    background: rgba(10, 10, 20, 0.6);
    border: 2px solid rgba(0, 201, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    border-color: #00c9ff;
    box-shadow: 0 0 30px rgba(0, 201, 255, 0.4);
    transform: translateY(-5px);
}

.social-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(0, 201, 255, 0.5));
}

.social-text {
    color: #92fe9d;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== POLICY PAGES STYLES (Privacy & Terms) ===== */
.policy-section {
    padding: 100px 0 60px;
    min-height: calc(100vh - 70px);
}

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

.policy-title {
    font-size: 3rem;
    background: linear-gradient(45deg, #00c9ff, #92fe9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.policy-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 10px;
}

.last-updated {
    color: #92fe9d;
    font-size: 0.95rem;
    font-style: italic;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.policy-section-item {
    background: rgba(10, 10, 20, 0.6);
    border: 2px solid rgba(0, 201, 255, 0.3);
    border-radius: 15px;
    padding: 35px;
    transition: all 0.3s ease;
}

.policy-section-item:hover {
    border-color: #00c9ff;
    box-shadow: 0 0 25px rgba(0, 201, 255, 0.2);
}

.policy-section-item h2 {
    color: #00c9ff;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.policy-section-item p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-section-item ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.policy-section-item ul li {
    color: #b0b0b0;
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.6;
}

.policy-section-item ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #92fe9d;
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-section-item a {
    color: #00c9ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-section-item a:hover {
    color: #92fe9d;
    text-shadow: 0 0 10px rgba(146, 254, 157, 0.5);
}

/* ===== MOBILE RESPONSIVE FOR CONTACT & POLICY PAGES ===== */
@media (max-width: 768px) {
    .contact-title,
    .policy-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }

    .contact-subtitle,
    .policy-subtitle {
        font-size: 1rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-form-section,
    .faq-section {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .policy-section-item {
        padding: 20px;
    }

    .policy-section-item h2 {
        font-size: 1.4rem;
    }

    .contact-section,
    .policy-section {
        padding: 80px 0 40px;
    }
}