/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(18, 18, 18, 0.98);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: ' Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 1px;
}

.logo-tag {
    font-family: ' Prompt', sans-serif;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-left: 2px;
}

/* Navigation Styles */
.main-nav {
    display: flex;
    margin-left: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.nav-list li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-list li a::after {
    content: ' ';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-tertiary));
    transition: width 0.3s ease;
}

.nav-list li a:hover {
    color: var(--accent-primary);
}

.nav-list li a:hover::after {
    width: 100%;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--primary-bg);
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    padding: 5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-list li {
    margin-bottom: 1.5rem;
}

.mobile-nav-list li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-list li a:hover {
    color: var(--accent-primary);
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.mobile-buttons .btn {
    width: 100%;
    text-align: center;
}

/* Responsive Header Styles */
@media (max-width: 1200px) {
    .nav-list {
        gap: 1rem;
    }
}

@media (max-width: 1150px) {
    .main-nav,
    .header-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Transform bars into X when menu is active */
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .logo-tag {
        font-size: 1rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--tertiary-bg);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-tertiary));
}

.footer-content {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo .logo-text {
    font-size: 2rem;
}

.footer-logo .logo-tag {
    font-size: 1.3rem;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 1rem;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-links-column h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links-column h4::after {
    content: ' ';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-tertiary));
    border-radius: 3px;
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 0.8rem;
}

.footer-links-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links-column ul li a:hover {
    color: var(--accent-primary);
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.copyright {
    margin-bottom: 1rem;
}

.copyright p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.footer-disclaimer p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.7;
}

/* Responsive Footer Styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo {
        align-items: center;
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding: 3rem 0 2rem;
    }
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
    z-index: 99;
    padding: 0.5rem 1rem;
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: var(--border-radius-md);
    margin: 0 0.25rem;
}

.sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.login-btn {
    background-color: var(--tertiary-bg);
}

.register-btn {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
}

.bonus-btn {
    background: linear-gradient(135deg, var(--accent-tertiary), #4b0082);
}

.sticky-btn:hover {
    transform: translateY(-5px);
    color: white;
}

.login-btn:hover {
    background-color: var(--card-bg);
}

.register-btn:hover,
.bonus-btn:hover {
    filter: brightness(1.1);
}

/* Adjust main padding to accommodate sticky buttons */
main {
    padding-bottom: 5rem;
}

/* Responsive Sticky Button Styles */
@media (max-width: 576px) {
    .sticky-btn {
        padding: 0.6rem 0.3rem;
        font-size: 0.8rem;
    }

    .sticky-btn i {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
}

@media (max-width: 360px) {
    .sticky-btn span {
        font-size: 0.75rem;
    }
}

/* Add body padding for fixed header */
body {
    padding-top: 70px;
    /* Adjust based on header height */
}

/* Style for body when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Apply overlay when mobile menu is open */
body.menu-open::after {
    content: ' ';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

/* Base Theme Styles */
:root {
    /* Dark Mode Color Palette */
    --primary-bg: #121212;
    --secondary-bg: #1e1e1e;
    --tertiary-bg: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent-primary: #ff9900;
    --accent-secondary: #ff5e00;
    --accent-tertiary: #871fff;
    --btn-primary: linear-gradient(135deg, #ff9900, #ff5e00);
    --btn-secondary: linear-gradient(135deg, #4a4a4a, #2d2d2d);
    --card-bg: #2a2a2a;
    --border-color: #3a3a3a;
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: ' Sarabun', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: ' Prompt', sans-serif;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-secondary);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background: var(--btn-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.btn-secondary {
    background: var(--btn-secondary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Hero Section Styles */
.hero-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--primary-bg), var(--secondary-bg));
}

.hero-section::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(135, 31, 255, 0.15), transparent 40%), radial-gradient(circle at 80% 30%, rgba(255, 153, 0, 0.1), transparent 40%);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    transform: translateY(var(--spacing-sm));
}

.animated-image {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    .hero-section .container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        flex: 1 1 100%;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        justify-content: center;
        margin-top: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: var(--spacing-lg) 0;
    }
}

/* Benefits Section Styles */
.benefits-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.benefits-section::after {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-header h2 {
    display: inline-block;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-header h2::after {
    content: ' ';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-tertiary));
    border-radius: var(--border-radius-sm);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.benefits-text {
    display: flex;
    flex-direction: column;
}

.benefits-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.7;
}

.benefits-text strong {
    color: var(--accent-primary);
    font-weight: 700;
}

.benefits-text .btn {
    align-self: flex-start;
    margin-top: var(--spacing-md);
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.benefit-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-primary);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--accent-primary);
    background: rgba(255, 153, 0, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Responsive Styles for Benefits Section */
@media (max-width: 992px) {
    .benefits-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .benefits-text {
        order: 1;
    }

    .benefits-cards {
        order: 0;
    }

    .benefits-text .btn {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .benefits-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .card-icon {
        font-size: 2rem;
        width: 70px;
        height: 70px;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.5rem;
    }

    .benefits-text p {
        font-size: 1rem;
    }

    .benefit-card {
        padding: var(--spacing-md);
    }
}

/* Animation for benefit cards */
.benefit-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefit-card.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger the animation timing for cards */
.benefit-card:nth-child(1) {
    transition-delay: 0.1s;
}

.benefit-card:nth-child(2) {
    transition-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    transition-delay: 0.3s;
}

.benefit-card:nth-child(4) {
    transition-delay: 0.4s;
}

/* Easy Access Section Styles */
.easy-access-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.easy-access-section::before {
    content: ' ';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(135, 31, 255, 0.08), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.easy-access-content {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.easy-access-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-mockup {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    z-index: 2;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.icon-bubble {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: floatBubble 5s infinite ease-in-out;
}

.icon-bubble:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.icon-bubble:nth-child(2) {
    top: 50%;
    left: 5%;
    animation-delay: 1s;
}

.icon-bubble:nth-child(3) {
    top: 70%;
    right: 15%;
    animation-delay: 1.5s;
}

.icon-bubble:nth-child(4) {
    top: 30%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes floatBubble {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

.easy-access-text {
    display: flex;
    flex-direction: column;
}

.easy-access-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.7;
}

.easy-access-text strong {
    color: var(--accent-primary);
    font-weight: 700;
}

.access-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
}

.step-text h4 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
    color: var(--text-primary);
}

.step-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.easy-access-text .btn {
    align-self: flex-start;
    margin-top: var(--spacing-sm);
}

/* Responsive Styles for Easy Access Section */
@media (max-width: 1200px) {
    .access-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .easy-access-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .easy-access-image {
        order: 0;
        margin-bottom: var(--spacing-lg);
    }

    .easy-access-text {
        order: 1;
    }

    .easy-access-text .btn {
        align-self: center;
    }

    .access-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .access-steps {
        grid-template-columns: 1fr;
    }

    .icon-bubble {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .step {
        padding: var(--spacing-sm);
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .step-text h4 {
        font-size: 1rem;
    }

    .step-text p {
        font-size: 0.9rem;
    }
}

/* Animation for steps */
.step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.step-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Device image zoom effect on hover */
.device-mockup {
    transition: transform 0.5s ease;
}

.easy-access-image:hover .device-mockup {
    transform: scale(1.05);
}

/* Game Variety Section Styles */
.game-variety-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.game-variety-section::before {
    content: ' ';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 94, 0, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.game-variety-content {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

/* Game Showcase */
.game-showcase {
    display: flex;
    flex-direction: column;
}

.game-categories {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.category-tab {
    background-color: var(--tertiary-bg);
    border-radius: var(--border-radius-md);
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-tab i {
    color: var(--accent-primary);
}

.category-tab.active {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.2), rgba(135, 31, 255, 0.2));
    border: 1px solid var(--accent-primary);
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.1);
}

.category-tab:hover:not(.active) {
    background-color: var(--card-bg);
    transform: translateY(-3px);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.game-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.game-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-btn:hover {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
    color: white;
}

.game-card:hover .play-btn {
    transform: translateY(0);
}

.game-info {
    padding: var(--spacing-sm);
}

.game-info h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.game-rating {
    display: flex;
    gap: 2px;
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.view-all-btn {
    align-self: center;
    margin-top: var(--spacing-sm);
}

/* Game Description */
.game-description {
    padding: var(--spacing-lg);
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.game-description p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.7;
}

.game-description strong {
    color: var(--accent-primary);
    font-weight: 700;
}

.game-description a {
    color: var(--accent-tertiary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.game-description a:hover {
    color: var(--accent-primary);
    text-decoration: underline;
}

.game-types-list {
    list-style-type: none;
    margin: 0 0 var(--spacing-md) 0;
    padding: 0;
}

.game-types-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

.game-types-list li:before {
    content: ' \f178';
    font-family: ' Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

.game-description .btn {
    margin-top: var(--spacing-md);
    align-self: flex-start;
    display: inline-flex;
}

/* Responsive Styles for Game Variety Section */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .game-variety-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .game-description {
        order: 1;
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-tab {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .games-grid {
        grid-template-columns: 1fr;
    }

    .game-categories {
        justify-content: center;
    }

    .category-tab {
        flex: 1 1 40%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .game-description {
        padding: var(--spacing-md);
    }

    .category-tab {
        flex: 1 1 100%;
    }
}

/* Game card animations */
.game-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.game-card.game-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delay for game cards */
.game-card:nth-child(1) {
    transition-delay: 0.1s;
}

.game-card:nth-child(2) {
    transition-delay: 0.2s;
}

.game-card:nth-child(3) {
    transition-delay: 0.3s;
}

.game-card:nth-child(4) {
    transition-delay: 0.4s;
}

.game-card:nth-child(5) {
    transition-delay: 0.5s;
}

.game-card:nth-child(6) {
    transition-delay: 0.6s;
}

/* Shimmer effect for game cards */
.game-card::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s;
    z-index: 1;
    pointer-events: none;
}

.game-card:hover::after {
    left: 125%;
}

/* Wallet Section Styles */
.wallet-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.wallet-section::after {
    content: ' ';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(135, 31, 255, 0.08), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.wallet-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

/* Wallet Text Styles */
.wallet-text {
    padding: var(--spacing-lg);
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wallet-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.7;
}

.wallet-text strong {
    color: var(--accent-primary);
    font-weight: 700;
}

/* Wallet Features Styles */
.wallet-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.wallet-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: linear-gradient(145deg, var(--tertiary-bg), var(--card-bg));
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.wallet-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-primary);
}

.wallet-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.2);
}

.wallet-feature-content {
    flex: 1;
}

.wallet-feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.wallet-feature-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Wallet Mockup */
.wallet-mockup {
    margin: var(--spacing-md) 0;
    align-self: center;
    width: 100%;
}

.mockup-screen {
    background: linear-gradient(145deg, #2a2a2a, #333333);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), inset 0 2px 0 rgba(255, 255, 255, 0.1), inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}

.mockup-screen::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-tertiary));
}

.mockup-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.mockup-header span {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.mockup-balance {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.balance-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.balance-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.mockup-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.mockup-btn {
    flex: 1;
    text-align: center;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mockup-btn.deposit {
    background: linear-gradient(135deg, #00ad5f, #00c36a);
    color: white;
}

.mockup-btn.withdraw {
    background: linear-gradient(135deg, #d95e5e, #f06565);
    color: white;
}

.mockup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.wallet-cta {
    align-self: center;
    margin-top: var(--spacing-md);
}

/* Responsive Styles for Wallet Section */
@media (max-width: 1200px) {
    .wallet-card {
        padding: var(--spacing-sm);
    }

    .wallet-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .wallet-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .wallet-features {
        order: 0;
    }

    .wallet-text {
        order: 1;
    }

    .wallet-mockup {
        max-width: 350px;
        margin: var(--spacing-lg) auto;
    }
}

@media (max-width: 768px) {
    .wallet-card {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
    }

    .wallet-icon {
        margin-bottom: var(--spacing-sm);
    }

    .wallet-feature-content h3 {
        font-size: 1.1rem;
    }

    .mockup-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .wallet-text {
        padding: var(--spacing-md);
    }

    .wallet-text p {
        font-size: 1rem;
    }

    .balance-amount {
        font-size: 1.7rem;
    }
}

/* Wallet card animations */
.wallet-card {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wallet-card-visible {
    opacity: 1;
    transform: translateX(0);
}

.wallet-icon {
    transition: transform 0.3s ease;
}

/* Mockup screen animations */
.mockup-screen {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.3s ease;
}

.mockup-screen.animated {
    transform: translateY(0);
    opacity: 1;
}

/* Shimmer effect on balance */
.balance-amount {
    position: relative;
    overflow: hidden;
}

.balance-amount::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Promotions Section Styles */
.promotions-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: ' ';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 94, 0, 0.08), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.promotions-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

/* Promotions Slider */
.promotions-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 500px;
}

.promotion-slide {
    min-width: 100%;
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.promotion-slide.active {
    opacity: 1;
    position: relative;
}

.promotion-card {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, rgba(42, 42, 42, 0.8), rgba(35, 35, 35, 0.8));
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.promotion-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promotion-image {
    height: 60%;
    overflow: hidden;
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promotion-card:hover .promotion-image img {
    transform: scale(1.05);
}

.promotion-details {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    height: 40%;
}

.promotion-details h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.promotion-details p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    font-size: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    z-index: 10;
}

.slider-arrow {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(255, 153, 0, 0.7);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot:hover {
    transform: scale(1.2);
}

.dot.active {
    background-color: var(--accent-primary);
}

/* Promotions Text */
.promotions-text {
    padding: var(--spacing-lg);
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.promotions-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.7;
}

.promotions-text strong {
    color: var(--accent-primary);
    font-weight: 700;
}

.promotions-list {
    margin: 0 0 var(--spacing-md) 0;
    padding: 0 0 0 1.5rem;
}

.promotions-list li {
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-left: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.promotions-list li strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--accent-primary);
}

.promotions-cta {
    margin-top: var(--spacing-md);
    align-self: flex-start;
    display: inline-flex;
}

/* Responsive Styles for Promotions Section */
@media (max-width: 1200px) {
    .slider-container {
        height: 450px;
    }

    .promotion-details h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .promotions-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .promotions-slider {
        order: 0;
        margin-bottom: var(--spacing-md);
    }

    .slider-container {
        height: 400px;
    }

    .promotions-text {
        order: 1;
    }

    .promotions-cta {
        display: block;
        text-align: center;
        margin: var(--spacing-md) auto 0;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 350px;
    }

    .promotion-details h3 {
        font-size: 1.2rem;
    }

    .promotion-details p {
        font-size: 0.9rem;
    }

    .promotions-list li {
        margin-bottom: var(--spacing-sm);
    }
}

@media (max-width: 576px) {
    .slider-container {
        height: 300px;
    }

    .promotion-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
        top: 10px;
        right: 10px;
    }

    .promotion-details {
        padding: var(--spacing-sm);
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 280px;
    }

    .promotions-text {
        padding: var(--spacing-md);
    }

    .promotions-text p {
        font-size: 1rem;
    }
}

/* Animations for Promotions Section */
.promotions-slider {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.promotions-slider.reveal {
    opacity: 1;
    transform: translateY(0);
}

.promotions-list li {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.promotions-list li.item-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide transition animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.promotion-slide.active {
    animation: fadeIn 0.5s ease forwards;
}

/* Pulsating effect for promotion badges */
.promotion-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 153, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 153, 0, 0);
    }
}

/* Bounce effect for slider arrows on hover */
.slider-arrow:hover {
    animation: bounce 0.5s ease;
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}