/* abcbet - Jackpot Joker Fever Theme CSS */
/* 2026 Original Design */

:root {
    --primary-purple: #6B21A8;
    --primary-gold: #D4AF37;
    --dark-bg: #0F0A1A;
    --darker-bg: #080510;
    --card-bg: #1A1025;
    --text-light: #F5F5F5;
    --text-muted: #A0A0A0;
    --accent-pink: #EC4899;
    --accent-green: #10B981;
    --gradient-purple: linear-gradient(135deg, #6B21A8 0%, #9333EA 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F5D76E 100%);
    --shadow-glow: 0 0 30px rgba(107, 33, 168, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #F5D76E;
}

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

/* Header */
.main-header {
    background: var(--darker-bg);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.cta-btn {
    background: var(--gradient-gold);
    color: var(--darker-bg) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--darker-bg);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15,10,26,0.95) 0%, rgba(15,10,26,0.7) 50%, rgba(15,10,26,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 20px 60px 60px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content .highlight {
    color: var(--primary-gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-pink);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--darker-bg) !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light) !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary-purple);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
}

/* Author Section */
.author-section {
    background: var(--card-bg);
    padding: 40px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.author-card {
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-gold);
    object-fit: cover;
}

.author-info h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.author-title {
    color: var(--accent-pink);
    font-weight: 600;
    margin-bottom: 10px;
}

.author-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

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

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

.about-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.about-content h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 30px 0 20px;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-muted);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.games-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

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

.game-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-gold);
}

.game-card a {
    display: block;
    color: inherit;
}

.game-image {
    position: relative;
    overflow: hidden;
}

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

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

.game-info {
    padding: 25px;
}

.game-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.game-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.game-tag {
    display: inline-block;
    background: var(--gradient-purple);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.games-cta {
    text-align: center;
    margin-top: 50px;
}

/* Bonus Section */
.bonus-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--primary-purple) 50%, var(--dark-bg) 100%);
}

.bonus-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--card-bg);
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

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

.bonus-content {
    padding: 40px;
}

.bonus-content h2 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.bonus-highlight {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.bonus-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.bonus-features {
    list-style: none;
    margin-bottom: 30px;
}

.bonus-features li {
    padding: 8px 0;
    color: var(--text-muted);
    padding-left: 25px;
    position: relative;
}

.bonus-features li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

/* Payment Section */
.payment-section {
    padding: 80px 0;
}

.payment-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.payment-highlight {
    max-width: 800px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
}

.payment-highlight img {
    width: 100%;
}

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

.payment-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.payment-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

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

.payment-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.payment-card ul {
    list-style: none;
}

.payment-card li {
    padding: 5px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* License Section */
.license-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

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

.license-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: center;
}

.license-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.license-content h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.license-content ul {
    list-style: none;
}

.license-content li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
}

.license-content li::before {
    content: '🛡️';
    position: absolute;
    left: 0;
}

.license-badge img {
    border-radius: 15px;
}

/* Support Section */
.support-section {
    padding: 80px 0;
}

.support-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.support-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.support-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.support-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.support-card p {
    color: var(--text-muted);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gradient-purple);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.email-icon {
    background: var(--gradient-gold);
}

/* Responsible Gaming */
.responsible-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

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

.responsible-grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 50px;
    align-items: center;
}

.responsible-image img {
    border-radius: 20px;
}

.responsible-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.responsible-content h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.responsible-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.responsible-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
}

.responsible-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 1.5rem;
    line-height: 1;
}

.help-links a {
    display: inline-block;
    margin-right: 20px;
}

.age-warning {
    background: rgba(239, 68, 68, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #EF4444;
    margin-top: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

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

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-muted);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

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

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

.review-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

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

.stars {
    color: var(--primary-gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-header time {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.review-author span:first-child {
    font-weight: 600;
    color: var(--text-light);
}

.review-location {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
.main-footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr) 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    width: 80px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    display: block;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-purple);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.footer-badges img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-badges img:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.disclaimer {
    color: #EF4444 !important;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .license-grid,
    .responsible-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .license-badge,
    .responsible-image {
        order: -1;
        text-align: center;
    }
    
    .bonus-card {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .cta-btn {
        display: none;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .bonus-highlight {
        font-size: 2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}


/* Inner Page Styles */
.page-content {
    min-height: 100vh;
}

.page-hero {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--primary-purple) 50%, var(--darker-bg) 100%);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.page-intro {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-section {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.main-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.featured-image {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 30px;
}

.main-content h2 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin: 30px 0 15px;
}

.main-content h2:first-of-type {
    margin-top: 0;
}

.main-content h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin: 25px 0 12px;
}

.main-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.main-content ul,
.main-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.main-content li {
    color: var(--text-muted);
    margin-bottom: 8px;
}

.numbered-list {
    list-style: decimal;
}

.tips-list {
    list-style: none;
    padding-left: 0;
}

.tips-list li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.cta-box {
    background: var(--gradient-purple);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.cta-box h3 {
    color: var(--primary-gold) !important;
    margin-bottom: 10px !important;
}

.cta-box p {
    color: var(--text-light) !important;
    margin-bottom: 20px;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.sidebar-card h3 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.game-list,
.nav-list {
    list-style: none;
    padding: 0;
}

.game-list li,
.nav-list li {
    margin-bottom: 10px;
}

.game-list a,
.nav-list a {
    color: var(--text-muted);
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.game-list a:hover,
.nav-list a:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}

/* Responsive for inner pages */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sidebar-card {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 25px;
    }
    
    .sidebar-card {
        min-width: 100%;
    }
}
