/* ==================== Header Styles ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    height: 70px;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.logo-text .highlight {
    color: var(--primary-color);
}

.main-navigation {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 0.8rem;
}

.btn-login,
.btn-register {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-login {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-register {
    background-color: var(--primary-color);
    color: #000;
}

.btn-register:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--bg-dark);
    z-index: 1001;
    padding: 1.5rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border-color);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--primary-color);
}

.mobile-navigation {
    flex: 1;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin-bottom: 1rem;
}

.mobile-nav-menu a {
    display: block;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.7rem 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: var(--primary-color);
}

.mobile-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Offset for fixed header */
main {
    padding-top: 90px;
}

/* ==================== Footer Styles ==================== */
.site-footer {
    background-color: var(--bg-darker);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    flex: 1;
    min-width: 300px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: var(--spacing-sm);
    font-size: 0.95rem;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.footer-links-column {
    flex: 1;
    min-width: 200px;
}

.footer-links-column h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    position: relative;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column li {
    margin-bottom: var(--spacing-xs);
}

.footer-links-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links-column a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.8rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== Sticky Buttons Styles ==================== */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99;
    border-top: 1px solid var(--border-color);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.8rem 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sticky-btn:nth-child(2) {
    background-color: var(--primary-color);
    color: #000;
}

.sticky-btn:not(:nth-child(2)):hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.sticky-btn:nth-child(2):hover {
    background-color: var(--primary-hover);
}

.sticky-btn i {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.sticky-btn span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Add padding to the bottom of the page to prevent content from being hidden behind sticky buttons */
body {
    padding-bottom: 70px;
}

/* ==================== Responsive Styles ==================== */
@media (max-width: 1180px) {

    .main-navigation,
    .header-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .footer-logo {
        text-align: center;
    }

    .footer-links {
        justify-content: space-between;
    }

    .footer-links-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-column {
        text-align: center;
    }
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .footer-logo {
        text-align: center;
    }

    .footer-links {
        justify-content: space-between;
    }

    .footer-links-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-column {
        text-align: center;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .footer-links-column {
        min-width: 100%;
    }

    .sticky-btn span {
        font-size: 0.8rem;
    }

    .sticky-btn i {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .footer-links-column {
        min-width: 100%;
    }

    .sticky-btn span {
        font-size: 0.8rem;
    }

    .sticky-btn i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0.8rem 0;
        height: 60px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .mobile-menu-toggle {
        font-size: 1.3rem;
    }

    .mobile-menu {
        width: 100%;
        max-width: none;
    }

    .sticky-btn {
        padding: 0.6rem 0.3rem;
    }

    .sticky-btn i {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .sticky-btn span {
        font-size: 0.75rem;
    }

    body {
        padding-bottom: 60px;
    }
}

/* Base Theme CSS */
:root {
    /* Primary Colors */
    --primary-color: #ffc107;
    /* Gold accent color */
    --primary-hover: #ffca28;
    /* Lighter gold for hover states */
    --secondary-color: #6c19ff;
    /* Purple accent color */
    --secondary-hover: #7c32ff;
    /* Lighter purple for hover states */
    /* Background Colors */
    --bg-dark: #121212;
    /* Main background */
    --bg-card: #1e1e1e;
    /* Card/section background */
    --bg-darker: #0a0a0a;
    /* Darker accent background */
    /* Text Colors */
    --text-primary: #ffffff;
    /* Primary text color */
    --text-secondary: #e0e0e0;
    /* Secondary text color */
    --text-muted: #9e9e9e;
    /* Muted/gray text */
    /* Border and Shadow */
    --border-color: #333333;
    /* Border color */
    --shadow-color: rgba(0, 0, 0, 0.5);
    /* Shadow color */
    /* 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;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.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;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    font-family: 'Prompt', sans-serif;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: #000;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section Styles */
.hero-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    border-bottom: 1px solid var(--border-color);
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 2px solid var(--primary-color);
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section .container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        flex: 1 0 100%;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: var(--spacing-lg) 0;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* About Section Styles */
.about-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-card);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(108, 25, 255, 0.05) 0%, rgba(0, 0, 0, 0) 80%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: 2.2rem;
    display: inline-block;
    position: relative;
    color: var(--primary-color);
    padding-bottom: var(--spacing-sm);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    border-radius: 3px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.about-text {
    flex: 3;
}

.about-text p {
    margin-bottom: var(--spacing-sm);
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.about-image {
    flex: 2;
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 24px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02) translateY(-5px);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    list-style-type: none;
    margin: var(--spacing-lg) 0;
}

.feature-item {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-darker) 100%);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.about-conclusion {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    border: 1px solid var(--border-color);
}

.about-conclusion p {
    margin-bottom: var(--spacing-sm);
}

.about-conclusion p:last-of-type {
    margin-bottom: var(--spacing-md);
}

.cta-container {
    text-align: center;
    margin-top: var(--spacing-md);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column-reverse;
        gap: var(--spacing-md);
    }

    .about-image {
        width: 100%;
        margin-bottom: var(--spacing-md);
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .feature-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-list {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .about-conclusion {
        padding: var(--spacing-md);
    }

    .section-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .feature-item {
        padding: var(--spacing-sm);
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .about-section {
        padding: var(--spacing-lg) 0;
    }
}

/* Safety Section Styles */
.safety-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-dark);
    position: relative;
}

.safety-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%236c19ff' fill-opacity='0.05'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 20.83l2.83-2.83 1.41 1.41L1.41 22.24H0v-1.41zM22.24 0l2.83 2.83-1.41 1.41L21.41 1.41V0h.83zM40 17.17l-2.83 2.83-1.41-1.41 2.83-2.83V17.17zM20.83 40l-2.83-2.83 1.41-1.41 2.83 2.83V40h-1.41zM17.17 0l2.83 2.83-1.41 1.41L16.76 1.41V0h.41zM0 1.41L2.83 4.24 1.41 5.65 0 4.24V1.41zm0 17.17L2.83 21.41 1.41 22.83 0 21.41v-2.83zM20.83 22.24L18 20.41l1.41-1.41 2.83 2.83v.41h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM22.24 18.59l2.83 2.83-1.41 1.41-2.83-2.83v-.41h1.41zM4.24 38.59l-2.83-2.83L2.83 34.34l2.83 2.83v1.42H4.24zM2.83 18.59L0 21.41v-2.83l2.83 2.83-1.41 1.41L0 21.41v-2.83l2.83-2.83 1.41 1.41L1.41 40H0v-1.41l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM18.59 40l.41-1.41 2.83-2.83 1.41 1.41L21.41 40h-2.82zm1.41-3.23l-2.83-2.83 1.41-1.41 2.83 2.83-1.41 1.41z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.2;
    pointer-events: none;
}

.safety-content {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    align-items: center;
}

.safety-image {
    flex: 1;
    position: relative;
    max-width: 450px;
}

.safety-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.safety-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--bg-dark);
}

.safety-badge i {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.safety-badge span {
    font-size: 0.8rem;
    font-weight: bold;
}

.safety-text {
    flex: 2;
}

.safety-text p {
    margin-bottom: var(--spacing-sm);
}

.safety-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.safety-tips {
    margin: var(--spacing-lg) 0;
}

.tips-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.tip-item {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.7) 0%, rgba(22, 22, 22, 0.9) 100%);
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: var(--spacing-md);
    display: flex;
    gap: var(--spacing-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border-color: var(--secondary-color);
}

.tip-icon {
    flex: 0 0 48px;
    height: 48px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    aspect-ratio: 1/1;
}

.tip-content {
    flex: 1;
}

.tip-content h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.tip-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.safety-conclusion {
    background: rgba(108, 25, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    border-left: 4px solid var(--secondary-color);
}

.safety-conclusion p {
    margin-bottom: var(--spacing-sm);
}

.safety-conclusion p:last-of-type {
    margin-bottom: var(--spacing-md);
}

.safety-conclusion .cta-container {
    text-align: center;
    margin-top: var(--spacing-md);
}

/* Responsive Styles for Safety Section */
@media (max-width: 992px) {
    .safety-content {
        flex-direction: column;
    }

    .safety-image {
        width: 100%;
        max-width: 100%;
        margin-bottom: var(--spacing-md);
    }

    .tips-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .safety-badge {
        width: 60px;
        height: 60px;
        bottom: -10px;
        right: -10px;
    }

    .safety-badge i {
        font-size: 1.2rem;
    }

    .safety-badge span {
        font-size: 0.7rem;
    }

    .tip-item {
        padding: var(--spacing-sm);
    }

    .tip-icon {
        flex: 0 0 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .safety-conclusion {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .safety-section {
        padding: var(--spacing-lg) 0;
    }

    .safety-badge {
        width: 50px;
        height: 50px;
        bottom: -8px;
        right: -8px;
    }

    .safety-badge i {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .safety-badge span {
        font-size: 0.6rem;
    }

    .tip-item {
        align-items: flex-start;
    }
}

/* Games Section Styles */
.games-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, rgba(255, 193, 7, 0) 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.games-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-color) 0%, rgba(108, 25, 255, 0) 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.games-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
}

.games-intro p {
    margin-bottom: var(--spacing-md);
}

.games-intro p:last-child {
    margin-bottom: 0;
}

.game-showcase {
    margin: var(--spacing-xl) 0;
}

.game-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.game-card {
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.game-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card-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;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-play {
    background-color: var(--primary-color);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-play:hover {
    background-color: var(--primary-hover);
    color: #000;
    transform: scale(1.05);
}

.game-card-content {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(108, 25, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    margin-bottom: var(--spacing-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    width: fit-content;
}

.game-type i {
    font-size: 0.9rem;
}

.game-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.game-card-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    flex: 1;
}

.games-promotion {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    background: linear-gradient(to right, rgba(108, 25, 255, 0.1), rgba(0, 0, 0, 0));
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    border-left: 4px solid var(--primary-color);
}

.promotion-content {
    flex: 3;
}

.promotion-content h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.promotion-content h3 i {
    font-size: 1.6rem;
}

.promotion-content p {
    margin-bottom: var(--spacing-sm);
}

.promotion-content p:last-child {
    margin-bottom: 0;
}

.promotion-image {
    flex: 2;
    position: relative;
}

.promotion-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.games-conclusion {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    margin-top: var(--spacing-xl);
}

.games-conclusion p {
    margin-bottom: var(--spacing-md);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.games-conclusion a {
    text-decoration: underline;
    font-weight: 700;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Responsive Styles for Games Section */
@media (max-width: 992px) {
    .game-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-promotion {
        flex-direction: column;
    }

    .promotion-image {
        width: 100%;
        order: -1;
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .game-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .game-card-image {
        height: 180px;
    }

    .games-promotion {
        padding: var(--spacing-md);
    }

    .promotion-content h3 {
        font-size: 1.2rem;
    }

    .promotion-content h3 i {
        font-size: 1.4rem;
    }

    .games-conclusion {
        padding: var(--spacing-md);
    }

    .btn-large {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .game-card-image {
        height: 160px;
    }

    .game-type {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }

    .game-card-content {
        padding: var(--spacing-sm);
    }

    .game-card-content h3 {
        font-size: 1.1rem;
    }

    .promotion-content h3 {
        font-size: 1.1rem;
    }
}

/* Investment Section Styles */
.investment-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-dark);
    position: relative;
}

.investment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236c19ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.investment-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.investment-image {
    flex: 1;
    position: relative;
}

.investment-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.investment-image:hover img {
    transform: translateY(-5px);
}

.floating-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--bg-dark);
    z-index: 2;
}

.investment-text {
    flex: 1;
}

.investment-text p {
    margin-bottom: var(--spacing-md);
}

.investment-text p:last-child {
    margin-bottom: 0;
}

.investment-text strong {
    color: var(--primary-color);
}

.investment-tips {
    margin: var(--spacing-xl) 0;
}

.investment-tips-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.investment-tips-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    display: inline-block;
    position: relative;
    padding-bottom: var(--spacing-xs);
}

.investment-tips-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.tip-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-color);
}

.tip-icon {
    height: 100px;
    width: 100px;
    aspect-ratio: 1/1;
    align-self: center;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color), rgba(108, 25, 255, 0.7));
    color: white;
    font-size: 2.5rem;
}

.tip-content {
    padding: var(--spacing-md);
    flex: 1;
}

.tip-content h4 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.tip-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.additional-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.info-box {
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
}

.info-box p {
    margin-bottom: 0;
}

.info-box-1 {
    background-color: rgba(255, 193, 7, 0.05);
    border-left: 3px solid var(--primary-color);
}

.info-box-2 {
    background-color: rgba(108, 25, 255, 0.05);
    border-left: 3px solid var(--secondary-color);
}

.investment-conclusion {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    margin-top: var(--spacing-lg);
    border: 1px solid var(--border-color);
}

.investment-conclusion p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-md);
}

.investment-conclusion p:last-of-type {
    margin-bottom: var(--spacing-lg);
}

.investment-conclusion .cta-container {
    margin-top: var(--spacing-md);
}

/* Responsive Styles for Investment Section */
@media (max-width: 992px) {
    .investment-content {
        flex-direction: column-reverse;
    }

    .investment-image,
    .investment-text {
        width: 100%;
    }

    .investment-image {
        margin-top: var(--spacing-md);
    }

    .investment-tips-header h3 {
        font-size: 1.6rem;
    }

    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .additional-info {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .floating-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        bottom: -15px;
        right: -15px;
        border-width: 3px;
    }

    .investment-tips-header h3 {
        font-size: 1.4rem;
    }

    .tip-icon {
        height: 80px;
        width: 80px;
        aspect-ratio: 1/1;
        font-size: 2rem;
    }

    .investment-conclusion {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .investment-section {
        padding: var(--spacing-lg) 0;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: -10px;
        right: -10px;
        border-width: 2px;
    }

    .info-box {
        padding: var(--spacing-sm);
    }

    .investment-tips-header h3 {
        font-size: 1.3rem;
    }

    .tip-icon {
        height: 70px;
        font-size: 1.8rem;
    }
}

/* Trust Section Styles */
.trust-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-card);
    position: relative;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.03) 0%, rgba(108, 25, 255, 0.03) 100%);
    pointer-events: none;
}

.trust-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
}

.trust-intro p {
    margin-bottom: var(--spacing-sm);
}

.trust-factors {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.trust-factor-card {
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.trust-factor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border-color: var(--primary-color);
}

.card-header {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-header i {
    font-size: 1.5rem;
    color: white;
}

.card-header h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    color: white;
}

.card-content {
    padding: var(--spacing-md);
}

.card-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.trust-verification {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-color);
}

.verification-image {
    flex: 1;
    position: relative;
}

.verification-image img {
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.verification-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--bg-dark);
}

.verification-content {
    flex: 2;
}

.verification-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.verification-content p {
    margin-bottom: var(--spacing-md);
}

.verification-checklist {
    margin-top: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    border-left: 3px solid var(--primary-color);
}

.checklist-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.checklist-item span {
    font-weight: 600;
    color: var(--text-primary);
}

.trust-conclusion {
    text-align: center;
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.7) 0%, rgba(22, 22, 22, 0.9) 100%);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-color);
}

.trust-conclusion p {
    margin-bottom: var(--spacing-lg);
}

.trust-conclusion .cta-container {
    margin-top: var(--spacing-md);
}

.trust-conclusion .btn {
    padding: 0.8rem 1.8rem;
    font-size: 1.1rem;
}

/* Responsive Styles for Trust Section */
@media (max-width: 992px) {
    .trust-factors {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .trust-verification {
        flex-direction: column;
        padding: var(--spacing-md);
    }

    .verification-image {
        width: 100%;
        margin-bottom: var(--spacing-md);
    }

    .verification-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .card-header {
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .card-header i {
        font-size: 1.3rem;
    }

    .card-header h3 {
        font-size: 1.1rem;
    }

    .card-content {
        padding: var(--spacing-sm);
    }

    .verification-badge {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: -10px;
        right: -10px;
    }

    .verification-content h3 {
        font-size: 1.2rem;
        margin-bottom: var(--spacing-sm);
    }

    .checklist-item {
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .trust-conclusion {
        padding: var(--spacing-md);
    }

    .trust-conclusion .btn {
        width: 100%;
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .trust-section {
        padding: var(--spacing-lg) 0;
    }

    .verification-badge {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        border-width: 2px;
    }

    .verification-content h3 {
        font-size: 1.1rem;
    }

    .checklist-item i {
        font-size: 1rem;
    }

    .checklist-item span {
        font-size: 0.9rem;
    }
}