/* ======= Header Styles ======= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.logo-highlight {
    color: var(--accent-color);
}

.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(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    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: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--accent-color);
}

.nav-list a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ======= Footer Styles ======= */
.site-footer {
    background-color: var(--dark-bg-alt);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(106, 17, 203, 0.1), transparent 50%), radial-gradient(circle at bottom left, rgba(37, 117, 252, 0.1), transparent 50%);
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.footer-info {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: var(--text-muted);
    margin-bottom: 0;
    max-width: 350px;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.footer-links-column {
    flex: 1;
}

.footer-links-column h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-gradient);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column li {
    margin-bottom: 0.75rem;
}

.footer-links-column a {
    color: var(--text-muted);
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 1rem;
}

.footer-links-column a::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.footer-links-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* ======= Sticky Buttons Styles ======= */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn:last-child {
    border-right: none;
}

.sticky-btn i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.sticky-btn span {
    font-size: 0.875rem;
    font-weight: 500;
}

.sticky-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* ======= Responsive Adjustments for Header, Footer and Sticky Buttons ======= */
/* Add padding to body to accommodate fixed header and sticky buttons */
body {
    padding-top: 70px;
    /* Adjust based on header height */
    padding-bottom: 60px;
    /* Adjust based on sticky buttons height */
}

@media (max-width: 992px) {

    .main-nav,
    .header-buttons {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    /* Mobile menu active state */
    .main-nav.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .main-nav.active .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .main-nav.active .nav-list a {
        font-size: 1.25rem;
    }

    /* Hamburger animation */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .header-buttons.active {
        display: flex;
        position: absolute;
        bottom: 20%;
        left: 0;
        width: 100%;
        justify-content: center;
        z-index: 1000;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .sticky-btn i {
        font-size: 1.1rem;
    }

    .sticky-btn span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .site-header {
        padding: 0.75rem 0;
    }

    .footer-links-column h3 {
        font-size: 1.125rem;
    }
}

/* Base Styles & Variables */
:root {
    /* Color Palette - Dark Theme */
    --primary-color: #6a11cb;
    --primary-gradient: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
    --secondary-color: #ff3e6c;
    --accent-color: #ffb700;
    --dark-bg: #0f0f1a;
    --dark-bg-alt: #1a1a2e;
    --text-light: #ffffff;
    --text-muted: #9ca3af;
    --border-color: #2d2d42;
    /* Typography */
    --heading-font: 'Prompt', sans-serif;
    --body-font: 'Sarabun', sans-serif;
    /* Layout */
    --container-width: 1280px;
    --section-padding: 4rem 1rem;
    --border-radius: 8px;
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-light);
    background-color: var(--dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-light);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

p {
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.6);
    color: var(--text-light);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* Hero Section Styles */
.hero-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-alt) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(106, 17, 203, 0.15), transparent 50%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }

    .hero-section .container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .hero-image {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 1rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 2rem 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }
}

/* ======= Section Styles ======= */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--text-light);
}

/* ======= Experience Section Styles ======= */
.experience-section {
    padding: var(--section-padding);
    background-color: var(--dark-bg);
    position: relative;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(37, 117, 252, 0.1), transparent 50%);
    z-index: 1;
}

.experience-content {
    display: flex;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.experience-text {
    flex: 3;
}

.experience-text p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.experience-text strong {
    color: var(--text-light);
    font-weight: 700;
}

.highlight-link {
    color: var(--accent-color);
    font-weight: 700;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.highlight-link:hover {
    color: var(--secondary-color);
}

.experience-image {
    flex: 2;
    position: relative;
}

.experience-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(15, 15, 26, 0.9) 0%, rgba(15, 15, 26, 0) 100%);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    display: flex;
    justify-content: center;
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(255, 183, 0, 0.4);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 183, 0, 0.6);
    color: var(--dark-bg);
}

.experience-features {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    flex: 1;
    background-color: var(--dark-bg-alt);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    display: block;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* ======= Responsive Adjustments for Experience Section ======= */
@media (max-width: 1200px) {
    .experience-features {
        flex-wrap: wrap;
    }

    .feature-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 992px) {
    .section-header h2 {
        font-size: 1.875rem;
    }

    .experience-content {
        flex-direction: column;
    }

    .experience-image {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .feature-card {
        flex: 0 0 100%;
        margin-bottom: 1rem;
    }

    .experience-features {
        gap: 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 1.25rem;
    }
}

/* ======= Trust Section Styles ======= */
.trust-section {
    padding: var(--section-padding);
    background-color: var(--dark-bg-alt);
    position: relative;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 62, 108, 0.1), transparent 70%);
    z-index: 1;
    border-radius: 50%;
}

.trust-content {
    display: flex;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.trust-image {
    flex: 2;
    position: relative;
}

.trust-text {
    flex: 3;
}

.trust-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.trust-badges {
    display: flex;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    gap: 1rem;
    width: 90%;
}

.badge {
    flex: 1;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.badge i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.badge span {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--text-light);
}

.trust-text p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.trust-text strong {
    color: var(--text-light);
    font-weight: 700;
}

.trust-feature-box {
    display: flex;
    gap: 1.5rem;
    background-color: rgba(15, 15, 26, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.trust-feature-box:hover {
    background-color: rgba(15, 15, 26, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--text-light);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.feature-content p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.trust-cta {
    margin-top: 2rem;
    text-align: center;
}

/* ======= Responsive Adjustments for Trust Section ======= */
@media (max-width: 992px) {
    .trust-content {
        flex-direction: column-reverse;
    }

    .trust-image {
        margin-top: 3rem;
    }

    .trust-badges {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: -20px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .trust-feature-box {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .feature-icon {
        margin: 0 auto 1rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .badge {
        flex: none;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        padding: 0.75rem 1rem;
    }

    .badge i {
        margin: 0 0.75rem 0 0;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .trust-feature-box {
        padding: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-content h3 {
        font-size: 1.125rem;
    }
}

/* ======= Promotions Section Styles ======= */
.promotions-section {
    padding: var(--section-padding);
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 183, 0, 0.1), transparent 70%);
    z-index: 1;
    border-radius: 50%;
}

.promotions-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(106, 17, 203, 0.1), transparent 70%);
    z-index: 1;
    border-radius: 50%;
}

.promotions-content {
    display: flex;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.promotions-text {
    flex: 3;
}

.promotions-image {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promotions-text p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.promotions-text strong {
    color: var(--text-light);
    font-weight: 700;
}

.bonus-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2rem 0;
}

.bonus-card {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 26, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.bonus-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    flex-shrink: 0;
}

.bonus-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.bonus-details {
    flex: 1;
}

.bonus-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.bonus-details p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.bonus-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.bonus-link:hover {
    color: var(--secondary-color);
    gap: 0.75rem;
}

.promo-card {
    width: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 26, 0.9) 100%);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.promo-header {
    background: var(--primary-gradient);
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.promo-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-light);
}

.promo-header i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    display: block;
}

.promo-body {
    padding: 1.5rem;
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.promo-feature:last-child {
    margin-bottom: 0;
}

.promo-feature i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.promo-feature span {
    color: var(--text-light);
    font-size: 1rem;
}

.promo-footer {
    padding: 1.5rem;
}

.promo-footer img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ======= Responsive Adjustments for Promotions Section ======= */
@media (max-width: 992px) {
    .promotions-content {
        flex-direction: column;
    }

    .bonus-card {
        padding: 1.25rem;
    }

    .bonus-icon {
        width: 60px;
        height: 60px;
    }

    .bonus-icon i {
        font-size: 1.75rem;
    }

    .promotions-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .promo-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .bonus-card {
        flex-direction: column;
        text-align: center;
    }

    .bonus-icon {
        margin: 0 auto 1rem;
    }

    .bonus-link {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .promo-header {
        padding: 1.25rem;
    }

    .promo-header h3 {
        font-size: 1.25rem;
    }

    .promo-header i {
        font-size: 2rem;
    }

    .promo-body,
    .promo-footer {
        padding: 1.25rem;
    }

    .promo-feature {
        margin-bottom: 0.75rem;
    }

    .promo-feature i {
        font-size: 1rem;
    }

    .promo-feature span {
        font-size: 0.9rem;
    }
}

/* ======= Strategy Section Styles ======= */
.strategy-section {
    padding: var(--section-padding);
    background-color: var(--dark-bg-alt);
    position: relative;
    overflow: hidden;
}

.strategy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center right, rgba(255, 62, 108, 0.1), transparent 60%);
    z-index: 1;
}

.strategy-content {
    display: flex;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.strategy-image {
    flex: 2;
}

.strategy-text {
    flex: 3;
}

.strategy-chart {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 26, 0.9) 100%);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chart-header {
    background: var(--primary-gradient);
    padding: 1.5rem;
    text-align: center;
}

.chart-header i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.chart-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-light);
}

.chart-body {
    padding: 1.5rem;
    flex: 1;
}

.strategy-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: center;
    transition: all 0.3s ease;
}

.strategy-step:last-child {
    margin-bottom: 0;
}

.strategy-step:hover {
    transform: translateX(10px);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.1rem;
    margin: 0 0 0.25rem;
    color: var(--text-light);
}

.step-content p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-muted);
}

.chart-footer {
    padding: 1.5rem;
    background-color: rgba(15, 15, 26, 0.5);
    border-top: 1px solid var(--border-color);
}

.strategy-text p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.strategy-text strong {
    color: var(--text-light);
    font-weight: 700;
}

.strategy-callout {
    display: flex;
    gap: 1.5rem;
    background-color: rgba(106, 17, 203, 0.1);
    border: 1px solid rgba(106, 17, 203, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
}

.strategy-callout i {
    font-size: 2.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.callout-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.callout-content p {
    margin-bottom: 0;
}

.strategy-tips {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2rem 0;
}

.tip-card {
    display: flex;
    gap: 1.25rem;
    background-color: rgba(15, 15, 26, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.tip-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.tip-content {
    flex: 1;
}

.tip-content h4 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: var(--text-light);
}

.tip-content p {
    margin: 0;
    font-size: 0.95rem;
}

.strategy-cta {
    margin-top: 2rem;
    text-align: center;
}

/* ======= Responsive Adjustments for Strategy Section ======= */
@media (max-width: 992px) {
    .strategy-content {
        flex-direction: column-reverse;
    }

    .strategy-image {
        margin-top: 2rem;
    }

    .strategy-chart {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .strategy-callout {
        flex-direction: column;
        text-align: center;
    }

    .strategy-callout i {
        margin: 0 auto 1rem;
    }

    .tip-card {
        flex-direction: column;
        text-align: center;
    }

    .tip-icon {
        margin: 0 auto 1rem;
    }

    .strategy-step:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .chart-header {
        padding: 1.25rem;
    }

    .chart-header i {
        font-size: 2rem;
    }

    .chart-header h3 {
        font-size: 1.25rem;
    }

    .chart-body,
    .chart-footer {
        padding: 1.25rem;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .strategy-callout {
        padding: 1.25rem;
    }

    .callout-content h3 {
        font-size: 1.125rem;
    }

    .tip-card {
        padding: 1rem;
    }

    .tip-content h4 {
        font-size: 1rem;
    }

    .tip-content p {
        font-size: 0.875rem;
    }
}

/* ======= Gaming Section Styles ======= */
.gaming-section {
    padding: var(--section-padding);
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.gaming-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(106, 17, 203, 0.1), transparent 50%), radial-gradient(circle at bottom left, rgba(255, 183, 0, 0.1), transparent 50%);
    z-index: 1;
}

.gaming-content {
    display: flex;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.gaming-text {
    flex: 3;
}

.gaming-image {
    flex: 2;
}

.gaming-text p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.gaming-text strong {
    color: var(--text-light);
    font-weight: 700;
}

.game-categories {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.game-category {
    flex: 1;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(15, 15, 26, 0.7) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.game-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
}

.category-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.game-category h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.game-category p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.gaming-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    background-color: rgba(15, 15, 26, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.gaming-feature {
    flex: 1 0 45%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.gaming-feature i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.gaming-feature span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.games-showcase {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 26, 0.9) 100%);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.showcase-header {
    background: var(--primary-gradient);
    padding: 1.25rem;
    text-align: center;
}

.showcase-header i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.showcase-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-light);
}

.showcase-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.game-card {
    background-color: rgba(15, 15, 26, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.game-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-thumb img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 26, 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 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.25rem;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.game-card:hover .play-btn {
    transform: scale(1);
}

.play-btn:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.game-info {
    padding: 1rem;
}

.game-info h4 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: var(--text-light);
}

.game-meta {
    display: flex;
    justify-content: space-between;
}

.game-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.game-meta i {
    color: var(--accent-color);
}

.showcase-footer {
    padding: 1.5rem;
    background-color: rgba(15, 15, 26, 0.5);
    border-top: 1px solid var(--border-color);
}

.gaming-cta {
    margin-top: 2rem;
    text-align: center;
}

/* ======= Responsive Adjustments for Gaming Section ======= */
@media (max-width: 992px) {
    .gaming-content {
        flex-direction: column;
    }

    .gaming-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .games-showcase {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .game-categories {
        flex-direction: column;
        gap: 1rem;
    }

    .game-category {
        padding: 1.25rem;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-icon i {
        font-size: 1.75rem;
    }

    .gaming-features {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .gaming-feature {
        flex: 0 0 100%;
    }

    .showcase-header {
        padding: 1rem;
    }

    .showcase-header i {
        font-size: 1.75rem;
    }

    .showcase-header h3 {
        font-size: 1.25rem;
    }

    .showcase-body {
        padding: 1.25rem;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .game-card {
        max-width: 300px;
        margin: 0 auto;
    }

    .game-info h4 {
        font-size: 1rem;
    }

    .game-meta span {
        font-size: 0.75rem;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .category-icon i {
        font-size: 1.5rem;
    }

    .game-category h3 {
        font-size: 1.125rem;
    }

    .game-category p {
        font-size: 0.875rem;
    }

    .gaming-feature i {
        font-size: 1.125rem;
    }

    .gaming-feature span {
        font-size: 0.875rem;
    }
}