/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FFD700;
    --secondary-gold: #B8860B;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --accent-red: #FF3333;
    --accent-green: #00FF88;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --border-color: #333;
    --glow-blue: #00BFFF;
    --glow-purple: #8A2BE2;
    --gradient-primary: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    --gradient-dark: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.3);
    --sidebar-width: 200px;
    --header-height: 70px;
}

a {
	text-decoration: none;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Running Ticker */
.running-ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 35px;
    background: linear-gradient(45deg, #FF3333, #FFD700, #00FF88, #00BFFF);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    z-index: 1001;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.ticker-content {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
    padding-left: 100%;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.ticker-item {
    margin-right: 3rem;
    font-weight: 600;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-gold);
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.8rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    color: var(--text-light);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 105px;
    width: var(--sidebar-width);
    height: calc(100vh - 105px);
    background: var(--gradient-dark);
    border-right: 2px solid var(--border-color);
    z-index: 999;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.sidebar-content {
    padding: 1rem 0;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 500;
}

.sidebar-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    transform: translateX(5px);
}

.sidebar-btn i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.dropdown-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.sidebar-btn:hover .dropdown-icon {
    transform: rotate(180deg);
}

.deposit-btn {
    position: relative;
    overflow: hidden;
}

.deposit-btn:hover {
    background: linear-gradient(45deg, var(--accent-green), var(--glow-blue));
    color: #000;
    font-weight: 700;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-gold), transparent);
    animation: rotate 2s linear infinite;
    z-index: -1;
}

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

.sidebar-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1rem 0;
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
    margin-top: 105px;
    min-height: calc(100vh - 105px);
    padding: 2rem;
}

.page {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.page.active {
    display: block;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

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

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 70vh;
    padding: 2rem 0;
    position: relative;
}

.hero-content h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-gold), var(--glow-blue), var(--primary-gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s ease infinite;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-cards,
.casino-chips {
    position: absolute;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    width: 60px;
    height: 80px;
    background: var(--gradient-dark);
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 10%;
    color: #000;
    animation-delay: 0s;
}

.card-2 {
    top: 30%;
    right: 20%;
    color: var(--accent-red);
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 30%;
    left: 20%;
    color: var(--accent-red);
    animation-delay: 1s;
}

.card-4 {
    bottom: 10%;
    right: 10%;
    color: #000;
    animation-delay: 1.5s;
}

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

.chip {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #000;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    animation: spin 4s linear infinite;
}

.chip-1 {
    top: 20%;
    right: 30%;
    animation-delay: 0s;
}

.chip-2 {
    top: 60%;
    left: 30%;
    animation-delay: 1s;
}

.chip-3 {
    bottom: 20%;
    right: 40%;
    animation-delay: 2s;
}

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

/* Games Showcase */
.games-showcase {
    margin: 4rem 0;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-gold);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--gradient-dark);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.game-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    position: relative;
}

.game-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(from 0deg, var(--primary-gold), var(--glow-blue), var(--primary-gold));
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

.game-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
}

.game-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.rtp {
    color: var(--accent-green);
		font-size: 1.2rem;
    font-weight: 600;
}

.volatility {
    color: var(--accent-red);
	font-size: 1.2rem;
    font-weight: 600;
}

.game-card.large {
    grid-column: span 2;
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-highlight {
    background: var(--gradient-dark);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.feature-highlight:hover::before {
    left: 100%;
}

.feature-content h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-content h3 i {
    margin-right: 0.5rem;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Promotions */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.promo-card {
    background: var(--gradient-dark);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.promo-card.featured {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.promo-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
}

.promo-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 1rem 0;
}

.promo-info {
    margin-top: 3rem;
    text-align: center;
}

.promo-info h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.promo-guarantee {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--accent-green);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.promo-guarantee i {
    color: var(--accent-green);
    font-size: 2rem;
}

/* Live Casino */
.live-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.live-game-card {
    background: var(--gradient-dark);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.live-game-card.featured {
    border-color: var(--accent-red);
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1), rgba(255, 51, 51, 0.05));
}

.live-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 51, 51, 0.2);
}

.game-preview {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--gradient-dark);
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-red);
}

.live-indicator {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-red);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.game-info {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.players {
    color: var(--accent-green);
}

.bet-range {
    color: var(--primary-gold);
}

.live-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Categories */
.games-categories {
    margin-bottom: 3rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-gray);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
}

.category-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-content.active {
    display: block;
    opacity: 1;
}

/* Mobile Features */
.mobile-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.mobile-feature {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-dark);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.mobile-feature:hover {
    transform: translateY(-5px);
    border-color: var(--glow-blue);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, var(--glow-blue), var(--glow-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.mobile-games-showcase {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(0, 191, 255, 0.05);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 15px;
}

.mobile-compatibility {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.compatibility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.compatibility-item i {
    font-size: 2rem;
    color: var(--glow-blue);
}

.mobile-motto {
    font-size: 1.1rem;
    color: var(--glow-blue);
    margin-top: 1rem;
}

.mobile-cta {
    text-align: center;
    margin-top: 3rem;
}

.mobile-cta h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* Support */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-card {
    background: var(--gradient-dark);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2);
}

.support-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, var(--accent-green), var(--glow-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
    color: var(--accent-green);
    font-size: 0.9rem;
}

.faq-section {
    margin-top: 3rem;
}

.faq-section h3 {
    text-align: center;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.faq-item {
    background: var(--gradient-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.faq-item h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.support-guarantee {
    margin-top: 3rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--accent-green);
    border-radius: 15px;
    padding: 2rem;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.guarantee-content i {
    font-size: 3rem;
    color: var(--accent-green);
}

.guarantee-content h4 {
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

/* Game Features */
.game-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.game-features .feature-item {
    background: var(--gradient-dark);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.game-features .feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.game-features .feature-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.game-features .feature-item h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-content {
        margin-left: 0;
        padding: 1rem;
    }
    
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .game-card.large {
        grid-column: span 1;
    }
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav,
    .header-actions {
        display: none;
    }
    
    .header-container {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .features-section {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-compatibility {
        flex-direction: column;
        align-items: center;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .ticker-content {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

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

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

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-left {
    animation: slideInLeft 0.6s ease;
}

.animate-right {
    animation: slideInRight 0.6s ease;
}

.animate-zoom {
    animation: zoomIn 0.6s ease;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gold);
}

/* Selection Styling */
::selection {
    background: var(--primary-gold);
    color: #000;
}

/* Focus Styles */
.btn:focus,
.nav-link:focus,
.sidebar-btn:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

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