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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0e1a;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #1a2332 0%, #0a0e1a 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 40px;
    width: auto;
}

.flag {
    height: 24px;
    width: auto;
}

.nav {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #38a8fa;
}

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

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1a2332 0%, #0a0e1a 100%);
    z-index: 999;
    transition: left 0.3s ease;
    padding-top: 80px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    padding: 2rem;
}

.mobile-nav-link {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    font-weight: 500;
}

.mobile-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #0167ca 0%, #38a8fa 100%);
    color: #fff;
    border-color: #0167ca;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #2196f3 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 103, 202, 0.3);
}

.btn-outline {
    background: transparent;
    color: #38a8fa;
    border-color: #38a8fa;
}

.btn-outline:hover {
    background: #38a8fa;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 168, 250, 0.3);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 50%, #0a0e1a 100%);
    padding: 120px 0 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(56, 168, 250, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #38a8fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-image {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #fff 0%, #38a8fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Table */
.features {
    background: linear-gradient(135deg, #1a2332 0%, #0a0e1a 100%);
}

.features-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-label {
    font-weight: 600;
    color: #38a8fa;
}

.feature-value {
    color: #fff;
}

/* About and Legal Sections */
.about, .legal {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 100%);
}

.about-content, .legal-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content p, .legal-content p {
    margin-bottom: 1.5rem;
}

/* Unique Features */
.unique-features {
    background: linear-gradient(135deg, #1a2332 0%, #0a0e1a 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 168, 250, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(56, 168, 250, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #38a8fa;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Sports Betting */
.sports-betting {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 100%);
}

.sports-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.sport-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sport-row:last-child {
    border-bottom: none;
}

.sport-name {
    font-weight: 600;
    color: #38a8fa;
}

.sport-markets {
    color: #fff;
}

.sports-features h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.features-list {
    list-style: none;
    color: #ccc;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.features-list i {
    color: #38a8fa;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Bonuses Section */
.bonuses {
    background: linear-gradient(135deg, #1a2332 0%, #0a0e1a 100%);
}

.bonus-hero {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.bonus-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bonus-content h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.bonus-content p {
    color: #ccc;
    line-height: 1.6;
}

.bonus-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.bonus-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-row:last-child {
    border-bottom: none;
}

.bonus-header {
    background: rgba(56, 168, 250, 0.2);
}

.bonus-header .bonus-cell {
    font-weight: 600;
    color: #38a8fa;
}

.bonus-cell {
    color: #fff;
    text-align: center;
}

.bonus-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.bonus-info p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.bonus-features {
    display: grid;
    gap: 2rem;
}

.bonus-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.bonus-feature h4 {
    color: #38a8fa;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.bonus-feature p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Registration */
.registration {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 100%);
}

.registration-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
}

.registration-content > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.registration-steps h3 {
    color: #38a8fa;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.steps-list {
    color: #ccc;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.registration-features h3 {
    color: #38a8fa;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Mobile Experience */
.mobile-experience {
    background: linear-gradient(135deg, #1a2332 0%, #0a0e1a 100%);
}

.mobile-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
}

.mobile-content h3 {
    color: #38a8fa;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.3rem;
}

.mobile-content h3:first-child {
    margin-top: 0;
}

.mobile-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mobile-comparison {
    margin-top: 3rem;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.comparison-header {
    background: rgba(56, 168, 250, 0.2);
}

.comparison-header .comparison-cell {
    font-weight: 600;
    color: #38a8fa;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
}

/* Games Section */
.games {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 100%);
}

.games-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.games-showcase {
    display: grid;
    gap: 3rem;
}

.game-highlight {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.game-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-info h3 {
    color: #38a8fa;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.game-info p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.popular-games {
    display: grid;
    gap: 2rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 168, 250, 0.2);
}

.game-card h4 {
    color: #38a8fa;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.game-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.game-card ul {
    list-style: none;
    color: #ccc;
}

.game-card li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.game-card li::before {
    content: '•';
    color: #38a8fa;
    position: absolute;
    left: 0;
}

/* Payment Methods */
.payments {
    background: linear-gradient(135deg, #1a2332 0%, #0a0e1a 100%);
}

.payments-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.payments h3 {
    color: #38a8fa;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    text-align: center;
}

.payment-methods {
    margin-bottom: 3rem;
}

.payment-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.payment-header {
    background: rgba(56, 168, 250, 0.2);
}

.payment-header .payment-cell {
    font-weight: 600;
    color: #38a8fa;
}

.payment-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-row:last-child {
    border-bottom: none;
}

.payment-cell {
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
}

.withdrawal-process {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.withdrawal-process h3 {
    color: #38a8fa;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: left;
}

.withdrawal-process p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Support */
.support {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 100%);
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
}

.support-content > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.support-channels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.support-channel {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 168, 250, 0.2);
}

.support-icon {
    font-size: 3rem;
    color: #38a8fa;
    margin-bottom: 1rem;
}

.support-channel h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.support-channel p {
    color: #ccc;
    line-height: 1.6;
}

.support-note {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

/* Reviews */
.reviews {
    background: linear-gradient(135deg, #1a2332 0%, #0a0e1a 100%);
}

.reviews-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
}

.reviews-content > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 168, 250, 0.2);
}

.review-icon {
    font-size: 3rem;
    color: #38a8fa;
    margin-bottom: 1rem;
}

.review-item h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.review-item p {
    color: #ccc;
    line-height: 1.6;
}

.reviews-note {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

/* FAQ */
.faq {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 100%);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question h3 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: #38a8fa;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Conclusion */
.conclusion {
    background: linear-gradient(135deg, #1a2332 0%, #0a0e1a 100%);
}

.conclusion-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.conclusion-content p {
    margin-bottom: 1.5rem;
}

.conclusion-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 100%);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #38a8fa;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 32px;
    width: auto;
}

.footer-flag {
    height: 20px;
    width: auto;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #38a8fa;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(56, 168, 250, 0.2);
    border-radius: 50%;
    color: #38a8fa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #38a8fa;
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-info p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #38a8fa;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav {
        display: flex;
    }
    
    .header-actions {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-channels {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .conclusion-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .bonus-hero {
        flex-direction: row;
        align-items: center;
    }
    
    .bonus-image {
        max-width: 400px;
    }
    
    .game-highlight {
        flex-direction: row;
        align-items: center;
    }
    
    .game-image {
        max-width: 400px;
    }
    
    .comparison-row {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .comparison-cell:first-child {
        text-align: left;
    }
    
    .payment-row {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .payment-cell:first-child {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .support-channels {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .popular-games {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.hero-content,
.feature-card,
.game-card,
.support-channel,
.review-item {
    animation: fadeInUp 0.6s ease-out;
}

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

::-webkit-scrollbar-track {
    background: #0a0e1a;
}

::-webkit-scrollbar-thumb {
    background: #38a8fa;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0167ca;
}