/* ========================================
   Rikvip Theme Styles
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* ========================================
   Header Styles
   ======================================== */
.site-header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(233, 69, 96, 0.3);
}

.nav-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.main-menu {
    display: flex;
    gap: 30px;
}

.main-menu a {
    color: #e0e0e0;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.main-menu a:hover {
    color: #e94560;
    background: rgba(233, 69, 96, 0.1);
}

.header-actions {
    display: flex;
    gap: 12px;
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    padding: 15px 0;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    padding: 20px;
    border-top: 1px solid rgba(233, 69, 96, 0.3);
}

.mobile-menu-wrapper.active {
    display: block;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu a {
    color: #e0e0e0;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: #e94560;
    background: rgba(233, 69, 96, 0.1);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(233, 69, 96, 0.3);
}

/* ========================================
   Button Styles
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
}

.btn-login {
    background: transparent;
    color: #e0e0e0;
    border: 2px solid #e94560;
}

.btn-login:hover {
    background: #e94560;
    color: #fff;
}

.btn-register,
.btn-primary,
.btn-cta-primary {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.btn-register:hover,
.btn-primary:hover,
.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
}

.btn-secondary,
.btn-cta-secondary {
    background: transparent;
    color: #e0e0e0;
    border: 2px solid #533483;
}

.btn-secondary:hover,
.btn-cta-secondary:hover {
    background: #533483;
    color: #fff;
}

.btn-game {
    background: linear-gradient(135deg, #533483 0%, #7b68ee 100%);
    color: #fff;
    padding: 10px 24px;
    font-size: 13px;
}

.btn-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(83, 52, 131, 0.4);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    padding: 150px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(83, 52, 131, 0.1) 100%);
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 50%, #7b68ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 32px;
    color: #b0b0b0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Games Section
   ======================================== */
.games-section {
    padding: 80px 0;
}

.games-section h2,
.features-section h2,
.guide-section h2,
.cta-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #fff;
}

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

.game-card {
    background: linear-gradient(135deg, rgba(83, 52, 131, 0.2) 0%, rgba(26, 26, 46, 0.8) 100%);
    border: 1px solid rgba(233, 69, 96, 0.2);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(233, 69, 96, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
}

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

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

.game-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.game-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.game-card p {
    color: #b0b0b0;
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.3) 0%, rgba(22, 33, 62, 0.3) 100%);
}

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

.feature-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(83, 52, 131, 0.3);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(233, 69, 96, 0.4);
    background: rgba(26, 26, 46, 0.8);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
}

.feature-card p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   Guide Section
   ======================================== */
.guide-section {
    padding: 80px 0;
}

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

.guide-step {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
    border: 1px solid rgba(233, 69, 96, 0.2);
    border-radius: 16px;
    padding: 35px;
    position: relative;
    transition: all 0.3s ease;
}

.guide-step:hover {
    border-color: rgba(233, 69, 96, 0.4);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.guide-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.guide-step p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(83, 52, 131, 0.2) 0%, rgba(233, 69, 96, 0.1) 100%);
}

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

.cta-content p {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 35px;
    flex-wrap: wrap;
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(83, 52, 131, 0.1) 100%);
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #e94560 0%, #7b68ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   Page Content
   ======================================== */
.page-content {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    color: #fff;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper p {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(233, 69, 96, 0.2);
}

/* ========================================
   Games Detail Section
   ======================================== */
.games-detail-section,
.features-detail-section,
.guide-detail-section {
    padding: 60px 0;
}

.games-detail-section h2,
.features-detail-section h2,
.guide-detail-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #fff;
}

.game-detail,
.feature-detail,
.guide-detail {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(83, 52, 131, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
}

.game-detail h3,
.feature-detail h3,
.guide-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #e94560;
}

.game-detail p,
.feature-detail p,
.guide-detail p {
    color: #b0b0b0;
    margin-bottom: 12px;
    line-height: 1.7;
}

.game-detail p:last-child,
.feature-detail p:last-child,
.guide-detail p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Guide Tips
   ======================================== */
.guide-tips {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(83, 52, 131, 0.1) 100%);
    border: 1px solid rgba(233, 69, 96, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.guide-tips h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
}

.guide-tips ul {
    list-style: none;
}

.guide-tips li {
    color: #b0b0b0;
    padding: 10px 0 10px 25px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.guide-tips li:last-child {
    border-bottom: none;
}

.guide-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e94560;
    font-weight: bold;
}

/* ========================================
   Post Item
   ======================================== */
.post-item {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(83, 52, 131, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.post-item h2 {
    margin: 0 0 15px;
}

.post-item h2 a {
    color: #fff;
    transition: color 0.3s ease;
}

.post-item h2 a:hover {
    color: #e94560;
}

.post-excerpt {
    color: #b0b0b0;
    line-height: 1.6;
}

/* ========================================
   Sidebar
   ======================================== */
.sidebar {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(83, 52, 131, 0.2);
    border-radius: 12px;
    padding: 25px;
}

.widget {
    margin-bottom: 30px;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fff;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(233, 69, 96, 0.3);
}

.widget p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.widget ul li a:hover {
    color: #e94560;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: rgba(15, 15, 30, 0.95);
    border-top: 1px solid rgba(233, 69, 96, 0.2);
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    color: #909090;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section ul li {
    padding: 8px 0;
}

.footer-section ul li a {
    color: #909090;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e94560;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #707070;
    font-size: 0.9rem;
}

/* Footer Menu Styles */
.footer-section .main-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section .main-menu li {
    position: relative;
    padding-left: 15px;
}

.footer-section .main-menu li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #e94560;
    font-size: 1.2rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.footer-section .main-menu li:hover::before {
    left: 5px;
    color: #ff6b6b;
}

.footer-section .main-menu a {
    color: #909090;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 4px 0;
}

.footer-section .main-menu a:hover {
    color: #e94560;
    padding-left: 8px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .nav-mobile {
        display: block;
    }

    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .games-section h2,
    .features-section h2,
    .guide-section h2,
    .cta-section h2 {
        font-size: 1.7rem;
    }

    .page-header h1 {
        font-size: 1.7rem;
    }

    .games-detail-section h2,
    .features-detail-section h2,
    .guide-detail-section h2 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 10px 22px;
        font-size: 13px;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .games-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .guide-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .game-card,
    .feature-card,
    .guide-step,
    .game-detail,
    .feature-detail,
    .guide-detail {
        padding: 25px 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ========================================
   Promotions Section
   ======================================== */
.promotions-section {
    padding: 60px 0;
}

.promotions-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #fff;
}

.promotion-card {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
    border: 1px solid rgba(233, 69, 96, 0.2);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.promotion-card:hover {
    border-color: rgba(233, 69, 96, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.promotion-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.promotion-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
    padding-right: 80px;
}

.promotion-card p {
    color: #b0b0b0;
    margin-bottom: 15px;
    line-height: 1.7;
}

.promotion-benefits {
    list-style: none;
    margin: 20px 0;
}

.promotion-benefits li {
    color: #d0d0d0;
    padding: 8px 0 8px 25px;
    position: relative;
}

.promotion-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e94560;
    font-weight: bold;
}

.btn-promotion {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: #fff;
    padding: 12px 28px;
    margin-top: 10px;
}

.btn-promotion:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

/* Promotions Terms */
.promotions-terms {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.3) 0%, rgba(22, 33, 62, 0.3) 100%);
}

.promotions-terms h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #fff;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: #e94560;
}

.terms-content p {
    color: #b0b0b0;
    margin-bottom: 15px;
    line-height: 1.7;
}

.terms-content ul {
    list-style: none;
    margin: 15px 0;
}

.terms-content ul li {
    color: #b0b0b0;
    padding: 8px 0 8px 25px;
    position: relative;
}

.terms-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e94560;
    font-weight: bold;
}

/* Promotions CTA */
.promotions-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(83, 52, 131, 0.2) 0%, rgba(233, 69, 96, 0.1) 100%);
}

.promotions-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.promotions-cta p {
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Responsive for Promotions */
@media (max-width: 768px) {
    .promotion-card {
        padding: 25px 20px;
    }

    .promotion-card h3 {
        font-size: 1.2rem;
        padding-right: 0;
        padding-top: 40px;
    }

    .promotion-badge {
        top: 15px;
        right: 15px;
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .promotions-section h2,
    .promotions-terms h2,
    .promotions-cta h2 {
        font-size: 1.6rem;
    }
}

/* ========================================
   Image Styles
   ======================================== */

/* Hero Section with Background Image */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.7);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Features Image */
.features-image {
    text-align: center;
    margin-bottom: 50px;
}

.features-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Guide Image */
.guide-image {
    text-align: center;
    margin-bottom: 50px;
}

.guide-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Features Banner */
.features-banner {
    text-align: center;
    margin-bottom: 50px;
}

.features-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Feature Image */
.feature-image {
    margin: 20px 0;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Guide Banner */
.guide-banner {
    text-align: center;
    margin-bottom: 50px;
}

.guide-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Promotions Banner */
.promotions-banner {
    text-align: center;
    margin-bottom: 50px;
}

.promotions-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Page Banner */
.page-banner {
    text-align: center;
    margin-bottom: 40px;
}

.page-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Page Image */
.page-image {
    margin: 20px 0;
}

.page-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Detail Image */
.detail-image {
    margin-bottom: 20px;
}

.detail-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Game Image */
.game-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
}

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

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

/* Responsive for Images */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
    }

    .features-image,
    .guide-image,
    .features-banner,
    .guide-banner,
    .promotions-banner,
    .page-banner {
        margin-bottom: 30px;
    }

    .game-image img {
        height: 160px;
    }
}
