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

:root {
    --accent: #24bf92;
    --accent-hover: #1a9d75;
    --accent-light: #2dd4a5;
    --bg-primary: #0b0e15;
    --bg-secondary: #13161f;
    --bg-elevated: #1a1e2a;
    --text-primary: #ffffff;
    --text-secondary: #c5cad3;
    --text-muted: #8a91a0;
    --border-color: #252936;
    --gradient-accent: linear-gradient(135deg, #24bf92 0%, #1a9d75 100%);
    --gradient-bg: linear-gradient(180deg, #0b0e15 0%, #13161f 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --glow: 0 0 24px rgba(36, 191, 146, 0.4);
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Mobile Fixed Actions */
.mobile-fixed-actions {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    gap: 16px;
    border-top: 2px solid var(--accent);
}

.mobile-action-btn {
    flex: 1;
    padding: 15px 28px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: block;
    letter-spacing: 0.3px;
}

.action-login {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.action-login:hover {
    background: var(--accent);
    color: white;
}

.action-register {
    background: var(--gradient-accent);
    color: white;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 12px rgba(36, 191, 146, 0.3);
}

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

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

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info span {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
}

.top-bar-links {
    display: flex;
    gap: 24px;
}

.top-bar-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.top-bar-links a:hover {
    color: var(--accent);
}

/* Header */
.main-header {
    background: var(--bg-secondary);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-img-1,
.brand-img-2 {
    height: 38px;
    width: auto;
}

.primary-nav {
    display: flex;
    gap: 32px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.primary-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
}

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

.primary-nav-link:hover {
    color: var(--accent);
}

.primary-nav-link:hover::after {
    width: 100%;
}

.auth-group {
    display: flex;
    gap: 14px;
}

.auth-btn {
    padding: 11px 26px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.3px;
}

.login-auth {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.login-auth:hover {
    background: var(--accent);
    color: white;
}

.register-auth {
    background: var(--gradient-accent);
    color: white;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 12px rgba(36, 191, 146, 0.3);
}

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

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.toggle-line {
    width: 26px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Nav Panel */
.mobile-nav-panel {
    display: none;
    position: fixed;
    top: 112px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-panel.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-content {
    background: var(--bg-secondary);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-link:hover {
    color: var(--accent);
    background: var(--bg-elevated);
    border-left-color: var(--accent);
    padding-left: 28px;
}

/* Hero Area */
.hero-area {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 14, 21, 0.90) 0%, rgba(19, 22, 31, 0.85) 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 32px;
    position: relative;
    z-index: 1;
    width: 100%;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(36, 191, 146, 0.12);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(36, 191, 146, 0.3);
    letter-spacing: 0.5px;
}

.hero-main-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-action-btn {
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.3px;
}

.primary-action {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 16px rgba(36, 191, 146, 0.4);
    border: 2px solid var(--accent);
}

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

.secondary-action {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.secondary-action:hover {
    background: var(--accent);
    color: white;
}

.hero-features {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

.hero-feature span:last-child {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-secondary);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-elevated);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.trust-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

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

.trust-text strong {
    display: block;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.trust-text span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Content Area */
.content-area {
    padding: 80px 0;
}

.section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Section Header */
.section-header-center {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-description {
    font-size: 17px;
    color: var(--text-secondary);
}

/* About Area */
.about-area {
    margin-bottom: 80px;
}

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

.about-text p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Bonus Showcase */
.bonus-showcase {
    margin-bottom: 80px;
}

.bonus-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.showcase-card {
    background: var(--bg-elevated);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.showcase-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(36, 191, 146, 0.2);
}

.featured-card {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(36, 191, 146, 0.15);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-accent);
    color: white;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.card-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.card-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.card-benefits {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
}

.card-benefits li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.card-benefits li:last-child {
    border-bottom: none;
}

.card-cta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--gradient-accent);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.card-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(36, 191, 146, 0.4);
}

/* Games Gallery */
.games-gallery {
    margin-bottom: 80px;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 12px 28px;
    background: var(--bg-elevated);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-tab:hover,
.gallery-tab.active {
    background: var(--gradient-accent);
    color: white;
    border-color: var(--accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.gallery-item {
    background: var(--bg-elevated);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.gallery-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(36, 191, 146, 0.2);
}

.gallery-thumb {
    aspect-ratio: 16/10;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.thumb-icon {
    font-size: 72px;
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(36, 191, 146, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .thumb-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.gallery-meta {
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-meta h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
}

.meta-tag {
    background: rgba(36, 191, 146, 0.15);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

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

.gallery-btn {
    display: inline-block;
    padding: 16px 48px;
    background: var(--gradient-accent);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(36, 191, 146, 0.3);
    letter-spacing: 0.3px;
}

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

/* Stats Area */
.stats-area {
    background: var(--bg-elevated);
    padding: 60px 0;
    margin-bottom: 80px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

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

.stats-value {
    font-size: 56px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.stats-label {
    font-size: 17px;
    color: var(--text-secondary);
}

/* Payment Area */
.payment-area {
    margin-bottom: 80px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.payment-method {
    background: var(--bg-elevated);
    padding: 32px 24px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.method-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.payment-method h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.payment-method p {
    font-size: 14px;
    color: var(--text-muted);
}

.payment-details {
    background: var(--bg-elevated);
    padding: 36px;
    border-radius: 14px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    border: 1px solid var(--border-color);
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-key {
    color: var(--text-muted);
    font-size: 14px;
}

.detail-val {
    color: var(--accent);
    font-size: 20px;
    font-weight: 700;
}

/* Footer */
.main-footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand-section {
    max-width: 400px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand-1,
.footer-brand-2 {
    height: 36px;
    width: auto;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-license-info {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.footer-license-info strong {
    color: var(--accent);
}

.footer-nav-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-nav-col h4 {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-nav-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-nav-col a:hover {
    color: var(--accent);
}

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

.copyright {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

.disclaimer {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-section {
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .top-bar-links {
        display: none;
    }
    
    .primary-nav {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .mobile-nav-panel {
        display: block !important;
    }
    
    .mobile-nav-panel.active {
        opacity: 1 !important;
        pointer-events: all !important;
    }
    
    .auth-group {
        display: none;
    }
    
    .mobile-fixed-actions {
        display: flex;
    }
    
    body {
        padding-bottom: 85px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-nav-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 36px;
    }
    
    .hero-lead {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-features {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    .trust-container {
        grid-template-columns: 1fr;
    }
    
    .bonus-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .payment-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .top-bar-container,
    .header-wrapper,
    .section-wrapper,
    .footer-content {
        padding: 0 20px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .footer-nav-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Game Categories Section */
.game-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #151932 100%);
    position: relative;
}

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

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.category-card h3 {
    color: #FFD700;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.category-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-card li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.category-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

/* Enhanced Gallery Images */
.gallery-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-thumb img {
    transform: scale(1.05);
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* About Section Enhancements */
.about-text h3 {
    color: #FFD700;
    font-size: 24px;
    margin: 30px 0 15px 0;
}

.about-text strong {
    color: #FFD700;
}

/* Game Categories Section */
.game-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #151932 100%);
    position: relative;
}

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

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.category-card h3 {
    color: #FFD700;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.category-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-card li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.category-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

/* Enhanced Gallery Images */
.gallery-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-thumb img {
    transform: scale(1.05);
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* About Section Enhancement */
.about-text h3 {
    color: #FFD700;
    font-size: 24px;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.about-text strong {
    color: #FFD700;
}

/* Mobile Responsive for Game Categories */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        padding: 20px;
    }
    
    .gallery-thumb img {
        height: 150px;
    }
}

/* Game Categories Section */
.game-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #151932 100%);
    position: relative;
}

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

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.category-card h3 {
    color: #FFD700;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.category-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-card li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.category-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

/* Enhanced Gallery Images */
.gallery-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-thumb img {
    transform: scale(1.05);
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* About Section Enhancements */
.about-text h3 {
    color: #FFD700;
    font-size: 24px;
    margin: 30px 0 15px 0;
}

.about-text strong {
    color: #FFD700;
}