/* ===== Header Styles ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    width: 100%;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: baseline;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-right: 0.25rem;
}

.logo-tagline {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text-secondary);
}

.main-nav {
    margin-left: auto;
    margin-right: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--color-text-primary);
}

.nav-list a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-login,
.btn-register {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-login {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-login:hover {
    background-color: rgba(255, 107, 0, 0.1);
}

.btn-register {
    background-color: var(--color-primary);
    color: var(--color-text-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--color-bg-secondary);
    z-index: 99;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.mobile-nav-list li {
    margin-bottom: 1.5rem;
}

.mobile-nav-list a {
    color: var(--color-text-primary);
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-actions .btn {
    width: 100%;
}

/* ===== Footer Styles ===== */
.site-footer {
    background-color: var(--color-bg-secondary);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
    /* Space for sticky buttons */
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-logo a {
    display: flex;
    align-items: baseline;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-top: 1rem;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--color-text-primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    color: var(--color-text-secondary);
}

.footer-contact i {
    color: var(--color-primary);
    margin-right: 0.75rem;
    min-width: 20px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-bg-accent);
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.copyright p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-policy-links {
    display: flex;
    gap: 1.5rem;
}

.footer-policy-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-policy-links a:hover {
    color: var(--color-primary);
}

/* ===== Sticky Buttons Styles ===== */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-secondary);
    display: flex;
    justify-content: space-around;
    padding: 0.75rem 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 90;
}

.sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0.5rem;
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.sticky-btn i {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.sticky-btn.btn-login {
    color: var(--color-text-secondary);
}

.sticky-btn.btn-login:hover {
    color: var(--color-primary);
}

.sticky-btn.btn-register {
    color: #ffffff;
}

.sticky-btn.btn-register:hover {
    transform: translateY(-3px);
}

.sticky-btn.btn-bonus {
    color: var(--color-secondary);
}

.sticky-btn.btn-bonus:hover {
    transform: translateY(-3px);
}

/* Responsive Media Queries */
@media screen and (max-width: 1150px) {
    .main-nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .site-header {
        padding: 0.75rem 0;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-tagline {
        font-size: 1rem;
    }

    .site-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-policy-links {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .site-header {
        padding: 0.5rem 0;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-tagline {
        font-size: 0.85rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links h4,
    .footer-contact h4,
    .footer-social h4 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    .footer-policy-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .sticky-buttons {
        padding: 0.5rem;
    }

    .sticky-btn {
        padding: 0.35rem;
        font-size: 0.8rem;
    }

    .sticky-btn i {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
}

/* Base Theme Styles */
:root {
    /* Color Palette - Dark Theme */
    --color-bg-primary: #121212;
    --color-bg-secondary: #1e1e1e;
    --color-bg-accent: #2d2d2d;
    --color-text-primary: #ffffff;
    --color-text-secondary: #e0e0e0;
    --color-text-muted: #a0a0a0;
    --color-border: #333333;
    /* Brand Colors */
    --color-primary: #ff6b00;
    --color-primary-light: #ff8533;
    --color-primary-dark: #cc5500;
    --color-secondary: #1f6bff;
    --color-secondary-light: #4285ff;
    --color-secondary-dark: #1855cc;
    /* Additional Colors */
    --color-success: #00c853;
    --color-warning: #ffd600;
    --color-danger: #ff3d00;
    /* Typography */
    --font-heading: 'Prompt', sans-serif;
    --font-body: 'Sarabun', sans-serif;
    /* Layout */
    --container-width: 1280px;
    --content-padding: 1.5rem;
    --section-spacing: 4rem;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary-light);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--color-text-primary);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-secondary);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    box-shadow: var(--box-shadow);
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    color: var(--color-text-primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-text-primary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-light);
    color: var(--color-text-primary);
    transform: translateY(-2px);
}

/* Hero Section Styles */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--color-bg-primary), var(--color-bg-secondary));
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.1) 0%, transparent 25%), radial-gradient(circle at 80% 70%, rgba(31, 107, 255, 0.1) 0%, transparent 25%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 60%;
}

.hero-section h1 {
    color: var(--color-text-primary);
    position: relative;
    margin-bottom: 1.5rem;
}

.hero-section h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-primary);
    margin-top: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image {
    flex: 1;
    max-width: 40%;
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    object-fit: cover;
    object-position: center;
    height: 400px;
    width: 100%;
}

.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--color-primary);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: rotate(15deg);
    box-shadow: var(--box-shadow);
    z-index: 3;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: bold;
}

.badge-amount {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.25rem;
    }

    .hero-section .container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        max-width: 100%;
    }

    .hero-image img {
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 4rem 0;
        min-height: auto;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-image img {
        height: 300px;
    }

    .floating-badge {
        width: 80px;
        height: 80px;
        top: -10px;
        right: -10px;
    }

    .badge-text {
        font-size: 0.65rem;
    }

    .badge-amount {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 1.75rem;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-image img {
        height: 250px;
    }
}

/* ===== About Section Styles ===== */
.about-section {
    padding: 5rem 0;
    background-color: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    z-index: 1;
    border-radius: 50%;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-primary);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

.about-features {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background-color: var(--color-bg-accent);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    aspect-ratio: 1/1;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.feature-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.feature-card strong {
    color: var(--color-primary);
}

/* Responsive adjustments for header and about section */
@media screen and (max-width: 1150px) {
    .main-nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .site-header {
        padding: 0.75rem 0;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-tagline {
        font-size: 1rem;
    }

    .about-section h2 {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 1.25rem;
    }
}

@media screen and (max-width: 576px) {
    .site-header {
        padding: 0.5rem 0;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-tagline {
        font-size: 0.85rem;
    }

    .about-section {
        padding: 3rem 0;
    }

    .about-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }
}

/* ===== Deposit-Withdraw Section Styles ===== */
.deposit-withdraw-section {
    padding: 5rem 0;
    background-color: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.deposit-withdraw-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(31, 107, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.deposit-withdraw-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.deposit-withdraw-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.deposit-withdraw-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-primary);
}

.transaction-content {
    position: relative;
    z-index: 2;
}

.transaction-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.transaction-card {
    background-color: var(--color-bg-secondary);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.transaction-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.card-content {
    flex: 1;
}

.transaction-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--color-text-primary);
}

.transaction-card p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 0;
}

.transaction-card strong {
    color: var(--color-primary);
    font-weight: 700;
}

.transaction-system {
    margin-top: 3rem;
    background-color: var(--color-bg-secondary);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}

.system-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.system-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.system-image:hover img {
    transform: scale(1.05);
}

.system-steps {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    min-width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.step-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.step-text p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

.step-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

.transaction-cta {
    padding: 2rem;
    text-align: center;
    background-color: var(--color-bg-accent);
    border-top: 1px solid var(--color-border);
}

.transaction-cta p {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
}

.transaction-cta strong {
    color: var(--color-primary);
    font-weight: 700;
}

.transaction-cta .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

/* Responsive Styles for Deposit-Withdraw Section */
@media screen and (max-width: 992px) {
    .transaction-details {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .system-image {
        height: 250px;
    }
}

@media screen and (max-width: 768px) {
    .deposit-withdraw-section {
        padding: 4rem 0;
    }

    .deposit-withdraw-section h2 {
        font-size: 1.75rem;
    }

    .transaction-card {
        padding: 1.5rem;
    }

    .card-icon {
        font-size: 2rem;
        width: 70px;
        height: 70px;
    }

    .transaction-card h3 {
        font-size: 1.3rem;
    }

    .system-steps {
        padding: 1.5rem;
    }

    .step-text h4 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .deposit-withdraw-section {
        padding: 3rem 0;
    }

    .deposit-withdraw-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .card-icon {
        font-size: 1.75rem;
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .transaction-card h3 {
        font-size: 1.2rem;
    }

    .system-image {
        height: 200px;
    }

    .step-item {
        gap: 1rem;
    }

    .step-number {
        min-width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .transaction-cta {
        padding: 1.5rem;
    }

    .transaction-cta p {
        font-size: 1rem;
    }

    .transaction-cta .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }
}

/* ===== Promotions Section Styles ===== */
.promotions-section {
    padding: 5rem 0;
    background-color: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.promotions-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.promotions-header h2 {
    position: relative;
    padding-bottom: 1.25rem;
    display: inline-block;
}

.promotions-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-primary);
}

.promotions-content {
    position: relative;
    z-index: 2;
}

.promotion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.promotion-card {
    background-color: var(--color-bg-accent);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--color-primary);
    color: var(--color-text-primary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.4rem 2rem;
    transform: rotate(45deg);
    z-index: 3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.card-header {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
}

.card-header h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
    flex: 1;
}

.card-icon {
    min-width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-text-primary);
    margin-left: 1rem;
}

.card-body {
    padding: 1.5rem;
    flex: 1;
}

.card-body p {
    margin-bottom: 0;
    font-size: 1rem;
}

.card-body strong {
    color: var(--color-primary);
    font-weight: 700;
}

.card-body a {
    color: var(--color-secondary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.card-body a:hover {
    color: var(--color-secondary-light);
}

.card-action {
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--color-border);
}

.btn-card {
    background-color: var(--color-primary);
    color: var(--color-text-primary);
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-card:hover {
    background-color: var(--color-primary-light);
    color: var(--color-text-primary);
    transform: translateY(-2px);
}

.promotion-info {
    margin-top: 5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background-color: var(--color-bg-accent);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.info-image {
    flex: 1;
    min-width: 300px;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.info-content {
    flex: 2;
    min-width: 300px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.info-content h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    position: relative;
}

.info-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
}

.info-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.step-marker {
    min-width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.step-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--color-text-secondary);
}

.step-content strong {
    color: var(--color-primary);
    font-weight: 700;
}

.info-cta {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.info-cta p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
}

.info-cta strong {
    color: var(--color-primary);
    font-weight: 700;
}

.info-cta .btn {
    padding: 0.75rem 2rem;
}

/* Responsive Styles for Promotions Section */
@media screen and (max-width: 992px) {
    .promotion-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .promotion-info {
        flex-direction: column;
        gap: 0;
    }

    .info-image {
        height: 350px;
    }

    .info-content {
        padding: 1.5rem;
    }

    .info-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .info-steps {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .promotions-section {
        padding: 4rem 0;
    }

    .promotions-header h2 {
        font-size: 1.75rem;
    }

    .card-header {
        padding: 1.25rem;
    }

    .card-header h3 {
        font-size: 1.2rem;
    }

    .card-icon {
        min-width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .card-body,
    .card-action {
        padding: 1.25rem;
    }

    .info-content h3 {
        font-size: 1.5rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .info-cta p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .promotions-section {
        padding: 3rem 0;
    }

    .promotions-header h2 {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .promotion-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .card-badge {
        top: 15px;
        right: -35px;
        font-size: 0.75rem;
        padding: 0.3rem 2rem;
    }

    .card-header h3 {
        font-size: 1.1rem;
    }

    .info-image {
        height: 250px;
    }

    .info-content {
        padding: 1.25rem;
    }

    .info-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }

    .info-steps {
        gap: 1.25rem;
    }

    .step-marker {
        min-width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .info-cta .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
}

/* ===== Games Section Styles ===== */
.games-section {
    padding: 5rem 0;
    background-color: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(31, 107, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.games-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.games-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.games-header h2 {
    position: relative;
    padding-bottom: 1.25rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.games-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-primary);
}

.section-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

.section-intro strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Game Providers */
.game-providers {
    background-color: var(--color-bg-secondary);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 2;
}

.provider-intro {
    margin-bottom: 2rem;
    text-align: center;
}

.provider-intro h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.provider-intro h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
}

.provider-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.provider-intro strong {
    color: var(--color-primary);
    font-weight: 700;
}

.provider-logo {
    width: 140px;
    height: 100px;
    background-color: var(--color-bg-accent);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.provider-logo:hover {
    transform: translateY(-5px);
}

.provider-logo img {
    max-width: 80%;
    max-height: 70%;
    object-fit: contain;
}

/* Game Features */
.game-features {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.features-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: var(--color-bg-secondary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon {
    min-width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.feature-text {
    flex: 1;
}

.feature-text p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.feature-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Game Promotion */
.game-promotion {
    text-align: center;
    background-color: var(--color-bg-accent);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--color-primary);
}

.game-promotion p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--color-text-primary);
}

.game-promotion strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Game Access */
.game-access {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.access-image {
    flex: 1;
    min-width: 300px;
}

.access-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.access-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.access-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.access-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
}

.access-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.access-content strong {
    color: var(--color-primary);
    font-weight: 700;
}

.access-cta {
    margin-top: 1.5rem;
}

/* Game Management */
.game-management {
    display: flex;
    gap: 3rem;
    position: relative;
    z-index: 2;
    background-color: var(--color-bg-secondary);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.management-content {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.management-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.management-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
}

.management-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.management-content p:last-child {
    margin-bottom: 0;
}

.management-content strong {
    color: var(--color-primary);
    font-weight: 700;
}

.management-image {
    flex: 1;
    min-width: 300px;
}

.management-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Styles for Games Section */
@media screen and (max-width: 992px) {

    .provider-logo {
        width: 120px;
        height: 90px;
    }

    .game-access,
    .game-management {
        flex-direction: column;
    }

    .access-image,
    .management-image {
        order: -1;
    }

    .management-image {
        height: 300px;
    }

    .access-content,
    .management-content {
        padding: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .games-section {
        padding: 4rem 0;
    }

    .games-header h2 {
        font-size: 1.75rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .game-providers {
        padding: 2rem;
    }

    .provider-intro h3 {
        font-size: 1.5rem;
    }

    .provider-intro p {
        font-size: 1rem;
    }

    .provider-logo {
        width: 100px;
        height: 80px;
    }

    .feature-item {
        padding: 1.25rem;
    }

    .feature-icon {
        min-width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .feature-text p {
        font-size: 1rem;
    }

    .game-promotion {
        padding: 1.5rem;
    }

    .game-promotion p {
        font-size: 1rem;
    }

    .access-content h3,
    .management-content h3 {
        font-size: 1.5rem;
    }

    .access-content p,
    .management-content p {
        font-size: 1rem;
    }

    .management-image {
        height: 250px;
    }
}

@media screen and (max-width: 576px) {
    .games-section {
        padding: 3rem 0;
    }

    .games-header h2 {
        font-size: 1.5rem;
    }

    .section-intro {
        font-size: 0.95rem;
    }

    .game-providers {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .provider-intro h3 {
        font-size: 1.4rem;
    }

    .provider-logo {
        width: 90px;
        height: 70px;
    }

    .feature-item {
        padding: 1rem;
        margin-bottom: 1rem;
        gap: 1rem;
    }

    .feature-icon {
        min-width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 0.95rem;
    }

    .game-promotion {
        padding: 1.25rem;
        margin-bottom: 2rem;
    }

    .game-access,
    .game-management {
        gap: 0;
        margin-bottom: 2rem;
    }

    .access-content,
    .management-content {
        padding: 1.5rem;
    }

    .access-content h3,
    .management-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .management-image {
        height: 200px;
    }

    .access-cta .btn {
        width: 100%;
    }
}

/* ===== Conclusion Section Styles ===== */
.conclusion-section {
    padding: 5rem 0;
    background-color: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.conclusion-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.conclusion-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(31, 107, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.conclusion-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.conclusion-header h2 {
    position: relative;
    padding-bottom: 1.25rem;
    display: inline-block;
}

.conclusion-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-primary);
}

.conclusion-content {
    position: relative;
    z-index: 2;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

.intro-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.reason-card {
    background-color: var(--color-bg-accent);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.card-content p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

.card-content strong {
    color: var(--color-primary);
    font-weight: 700;
}

.conclusion-summary {
    background-color: var(--color-bg-primary);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--color-primary);
}

.conclusion-summary p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.25rem;
}

.conclusion-summary p:last-child {
    margin-bottom: 0;
}

.conclusion-summary strong {
    color: var(--color-primary);
    font-weight: 700;
}

.conclusion-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.conclusion-cta .btn {
    padding: 0.85rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.conclusion-cta .btn i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Responsive Styles for Conclusion Section */
@media screen and (max-width: 992px) {
    .reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .reason-card {
        padding: 1.75rem;
    }

    .card-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }

    .conclusion-summary {
        padding: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .conclusion-section {
        padding: 4rem 0;
    }

    .conclusion-header h2 {
        font-size: 1.75rem;
    }

    .intro-text p {
        font-size: 1.05rem;
    }

    .reasons-grid {
        gap: 1.25rem;
    }

    .reason-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .card-content h3 {
        font-size: 1.25rem;
    }

    .conclusion-summary {
        padding: 1.75rem;
    }

    .conclusion-summary p {
        font-size: 1rem;
    }

    .conclusion-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .conclusion-cta .btn {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .conclusion-section {
        padding: 3rem 0;
    }

    .conclusion-header h2 {
        font-size: 1.5rem;
    }

    .intro-text {
        margin-bottom: 2rem;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .reason-card {
        padding: 1.25rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }

    .card-content p {
        font-size: 0.95rem;
    }

    .conclusion-summary {
        padding: 1.5rem;
    }
}