/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(7, 11, 20, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 0.6rem 0;
    background-color: rgba(7, 11, 20, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
}

.site-logo {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.site-logo .highlight {
    color: var(--primary-color);
}

.main-navigation {
    margin-left: auto;
    margin-right: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1.5rem;
}

.nav-menu li a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.nav-menu li a:hover {
    color: var(--text-light);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

/* Mobile Menu Styles */
@media (max-width: 1170px) {
    .main-navigation {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-darker);
        padding: 5rem 2rem 2rem;
        z-index: 999;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        margin-right: 0;
    }

    .main-navigation.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu li a {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }

    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 998;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .header-buttons {
        display: none;
    }
}

@media (max-width: 576px) {
    .site-logo {
        font-size: 1.5rem;
    }

    .main-navigation {
        width: 260px;
        right: -260px;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--bg-darker);
    color: var(--text-muted);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 107, 0, 0) 0%, rgba(255, 107, 0, 0.3) 50%, rgba(255, 107, 0, 0) 100%);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    display: block;
    margin-bottom: var(--spacing-sm);
}

.footer-logo .highlight {
    color: var(--primary-color);
}

.footer-tagline {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, rgba(24, 34, 53, 0.7), rgba(7, 11, 20, 0.7));
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    transform: translateY(-3px);
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.footer-links {
    display: flex;
    flex: 2;
    justify-content: flex-end;
    gap: var(--spacing-lg);
}

.footer-links-column {
    min-width: 160px;
}

.footer-links-column h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 0.5rem;
}

.footer-links-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-disclaimer {
    text-align: center;
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: var(--spacing-md);
}

.footer-disclaimer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom {
    text-align: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Styles for Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .footer-links {
        flex-direction: column;
        gap: var(--spacing-md);
        justify-content: flex-start;
    }

    .footer-links-column {
        width: 100%;
    }

    .footer-disclaimer p {
        font-size: 0.85rem;
    }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 900;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 0.9rem 0.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Prompt', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.sticky-btn i {
    font-size: 1.1rem;
}

.login-btn {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
    color: var(--text-light);
}

.login-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: var(--text-light);
}

.register-btn {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--text-light);
}

.register-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
}

.bonus-btn {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green));
    color: var(--text-dark);
    font-weight: 700;
}

.bonus-btn:hover {
    background: linear-gradient(135deg, var(--accent-green), #2ceeaa);
    color: var(--text-dark);
}

@media (max-width: 576px) {
    .sticky-btn {
        padding: 0.7rem 0.3rem;
        font-size: 0.85rem;
    }

    .sticky-btn i {
        font-size: 1rem;
    }
}

/* Adjust body padding for sticky footer */
body {
    padding-bottom: 60px;
    /* Height of sticky buttons */
}

@media (max-width: 576px) {
    body {
        padding-bottom: 50px;
        /* Smaller height on mobile */
    }
}

/* Base Theme CSS - Dark Mode */
:root {
    /* Primary colors */
    --primary-color: #ff6b00;
    --primary-dark: #cc5500;
    --primary-light: #ff8c3f;
    /* Secondary colors */
    --secondary-color: #4a00e0;
    --secondary-dark: #3900b0;
    --secondary-light: #6b24ff;
    /* Dark mode backgrounds */
    --bg-dark: #0f1623;
    --bg-darker: #070b14;
    --bg-card: #182235;
    /* Text colors */
    --text-light: #ffffff;
    --text-muted: #a0a0b0;
    --text-dark: #1a1a1a;
    /* Accent colors */
    --accent-green: #00d186;
    --accent-red: #ff3e4e;
    --accent-yellow: #ffc107;
    /* Container width */
    --container-width: 1280px;
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

/* 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-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

p {
    margin-bottom: var(--spacing-md);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
    color: var(--text-light);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(74, 0, 224, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(74, 0, 224, 0.4);
    color: var(--text-light);
}

/* Hero Section Styles */
.hero-section {
    padding: var(--spacing-xl) 0;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/g2gxyz (5).webp') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
}

.hero-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.hero-img {
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 107, 0, 0.3);
}

.hero-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--accent-red), var(--primary-color));
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-family: 'Prompt', sans-serif;
    transform: rotate(10deg);
    box-shadow: 0 5px 15px rgba(255, 62, 78, 0.4);
    z-index: 2;
}

.badge-text {
    font-size: 1.2rem;
    white-space: nowrap;
}

/* Responsive Styles for Hero Section */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    .hero-section .container {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: var(--spacing-lg);
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .btn {
        width: 100%;
    }

    .hero-badge {
        top: -15px;
        right: -10px;
        padding: 0.6rem 1.2rem;
    }

    .badge-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    h1 {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }
}


/* About Section Styles */
.about-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-dark);
    position: relative;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(74, 0, 224, 0) 0%, rgba(74, 0, 224, 0.5) 50%, rgba(74, 0, 224, 0) 100%);
}

.about-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.about-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
}

.about-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.about-text p {
    margin-bottom: var(--spacing-md);
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.feature-card {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-darker));
    border-radius: 1rem;
    padding: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--text-light);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.card-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(74, 0, 224, 0.3);
}

.card-btn:hover {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(74, 0, 224, 0.4);
    color: var(--text-light);
}

.cta-banner {
    margin-top: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(74, 0, 224, 0.1));
    border-radius: 1rem;
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 107, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-content h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-light);
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Responsive Styles for About Section */
@media (max-width: 992px) {
    .about-header h2 {
        font-size: 1.8rem;
    }

    .about-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .about-header h2 {
        font-size: 1.6rem;
    }

    .about-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-header h2 {
        font-size: 1.4rem;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }
}

/* Trust Section Styles */
.trust-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 0, 224, 0.15) 0%, rgba(74, 0, 224, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.trust-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, rgba(255, 107, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.trust-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.trust-header h2 {
    font-size: 2rem;
    color: var(--text-light);
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
}

.trust-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 3px;
}

.trust-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.trust-image {
    flex: 1;
    position: relative;
}

.trust-img {
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(74, 0, 224, 0.2);
    max-width: 100%;
}

.trust-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(74, 0, 224, 0.4);
    z-index: 2;
}

.trust-badge i {
    font-size: 1.2rem;
}

.trust-text {
    flex: 1;
}

.trust-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

.trust-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.trust-checklist {
    background: linear-gradient(145deg, rgba(24, 34, 53, 0.5), rgba(7, 11, 20, 0.5));
    border-radius: 1rem;
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.trust-checklist h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
}

.checklist {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-md);
}

.checklist li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist li i {
    color: var(--accent-green);
    font-size: 1.3rem;
    margin-right: var(--spacing-sm);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.checklist li span {
    color: var(--text-muted);
    line-height: 1.6;
}

.trust-advice {
    margin-top: var(--spacing-md);
}

.trust-advice p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.trust-advice strong {
    color: var(--primary-color);
    font-weight: 700;
}

.trust-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

/* Responsive Styles for Trust Section */
@media (max-width: 992px) {
    .trust-header h2 {
        font-size: 1.8rem;
    }

    .trust-content {
        flex-direction: column;
    }

    .trust-image {
        margin-bottom: var(--spacing-md);
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-checklist h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .trust-header h2 {
        font-size: 1.6rem;
    }

    .trust-badge {
        padding: 0.6rem 1.2rem;
        top: -10px;
        right: -10px;
    }

    .trust-badge i {
        font-size: 1rem;
    }

    .trust-text p,
    .trust-advice p {
        font-size: 1rem;
    }

    .trust-checklist {
        padding: var(--spacing-md);
    }

    .checklist li i {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .trust-header h2 {
        font-size: 1.4rem;
    }

    .trust-checklist h3 {
        font-size: 1.1rem;
    }

    .checklist li {
        align-items: flex-start;
    }

    .checklist li i {
        margin-top: 0.3rem;
    }
}

/* Security Section Styles */
.security-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-dark);
    position: relative;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/g2gxyz (6).webp') center/cover no-repeat;
    opacity: 0.02;
    z-index: 0;
}

.security-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.security-header h2 {
    font-size: 2rem;
    color: var(--accent-red);
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
}

.security-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--primary-color));
    border-radius: 3px;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.security-warning {
    display: flex;
    gap: var(--spacing-md);
    background: linear-gradient(145deg, rgba(24, 34, 53, 0.7), rgba(7, 11, 20, 0.7));
    border-radius: 1rem;
    padding: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 62, 78, 0.2);
}

.warning-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-red), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 62, 78, 0.3);
}

.warning-icon i {
    font-size: 1.8rem;
    color: var(--text-light);
}

.security-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

.security-text p:last-child {
    margin-bottom: 0;
}

.security-text strong {
    color: var(--accent-red);
    font-weight: 700;
}

.security-image {
    text-align: center;
    margin: var(--spacing-md) 0;
}

.security-img {
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 62, 78, 0.2);
    max-width: 100%;
    height: auto;
}

.security-tips {
    background: linear-gradient(145deg, rgba(24, 34, 53, 0.7), rgba(7, 11, 20, 0.7));
    border-radius: 1rem;
    padding: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.security-tips h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.tips-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

.tips-content p:last-child {
    margin-bottom: 0;
}

.tips-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.security-conclusion {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    padding: var(--spacing-md);
    background: linear-gradient(145deg, rgba(24, 34, 53, 0.4), rgba(7, 11, 20, 0.4));
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.security-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    position: relative;
    z-index: 1;
}

.sec-card {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-darker));
    border-radius: 1rem;
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.sec-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

.sec-card-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.sec-card h4 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.sec-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.security-action {
    text-align: center;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

/* Responsive Styles for Security Section */
@media (max-width: 992px) {
    .security-header h2 {
        font-size: 1.8rem;
    }

    .security-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .security-header h2 {
        font-size: 1.6rem;
    }

    .security-warning {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .warning-icon {
        margin-bottom: var(--spacing-sm);
    }

    .security-tips h3 {
        font-size: 1.3rem;
        text-align: center;
    }

    .security-conclusion {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .security-header h2 {
        font-size: 1.4rem;
    }

    .security-cards {
        grid-template-columns: 1fr;
    }

    .security-text p,
    .tips-content p {
        font-size: 1rem;
    }

    .security-tips h3 {
        font-size: 1.2rem;
    }
}

/* App Section Styles */
.app-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, rgba(255, 107, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.app-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 0, 224, 0.1) 0%, rgba(74, 0, 224, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.app-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.app-header h2 {
    font-size: 2rem;
    color: var(--text-light);
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
}

.app-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.app-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.app-device {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.device-mockup {
    position: relative;
    max-width: 300px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    background-color: var(--bg-dark);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.device-img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    display: block;
}

.device-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 5px 15px rgba(74, 0, 224, 0.4);
    z-index: 2;
    font-size: 0.9rem;
}

.device-badge i {
    color: var(--accent-yellow);
    font-size: 0.9rem;
}

.app-info {
    flex: 1;
}

.app-info p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

.app-info p:last-child {
    margin-bottom: 0;
}

.app-info strong {
    color: var(--primary-color);
    font-weight: 700;
}

.app-features {
    margin: var(--spacing-xl) 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    gap: var(--spacing-md);
    background: linear-gradient(145deg, rgba(24, 34, 53, 0.5), rgba(7, 11, 20, 0.5));
    border-radius: 1rem;
    padding: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(74, 0, 224, 0.3);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.feature-details h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-light);
}

.feature-details p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-details strong {
    color: var(--primary-color);
    font-weight: 700;
}

.app-conclusion {
    margin-bottom: var(--spacing-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.app-conclusion p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.app-conclusion strong {
    color: var(--primary-color);
    font-weight: 700;
}

.app-cta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

/* Responsive Styles for App Section */
@media (max-width: 992px) {
    .app-header h2 {
        font-size: 1.8rem;
    }

    .app-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .app-device {
        order: -1;
    }

    .app-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .app-header h2 {
        font-size: 1.6rem;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon {
        margin-bottom: var(--spacing-sm);
    }

    .app-conclusion p {
        font-size: 1rem;
    }

    .app-cta {
        flex-direction: column;
    }

    .app-cta .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .app-header h2 {
        font-size: 1.4rem;
    }

    .app-info p {
        font-size: 1rem;
    }

    .device-mockup {
        max-width: 250px;
    }

    .device-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .device-badge i {
        font-size: 0.8rem;
    }
}

/* Tips Section Styles */
.tips-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.tips-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/g2gxyz (7).webp') center/cover no-repeat;
    opacity: 0.03;
    z-index: 0;
    filter: blur(5px);
}

.tips-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.tips-header h2 {
    font-size: 2rem;
    color: var(--accent-green);
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
}

.tips-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--primary-color));
    border-radius: 3px;
}

.tips-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.tips-intro p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

.tips-intro strong {
    color: var(--accent-green);
    font-weight: 700;
}

.tips-grid {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.tips-content {
    flex: 1;
}

.tips-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

.tips-content p:last-child {
    margin-bottom: 0;
}

.tips-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.tips-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.tips-img {
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(0, 209, 134, 0.2);
    max-width: 100%;
    height: auto;
}

.tips-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--accent-green), var(--secondary-color));
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 209, 134, 0.4);
    z-index: 2;
}

.tips-badge i {
    font-size: 1.2rem;
}

.tips-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.tip-card {
    background: linear-gradient(145deg, rgba(24, 34, 53, 0.7), rgba(7, 11, 20, 0.7));
    border-radius: 1rem;
    padding: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.tip-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 5px 15px rgba(0, 209, 134, 0.3);
}

.tip-icon i {
    font-size: 1.8rem;
    color: var(--text-light);
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.tip-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.tip-card strong {
    color: var(--accent-green);
    font-weight: 700;
}

.tips-conclusion {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, rgba(24, 34, 53, 0.3), rgba(7, 11, 20, 0.3));
    border-radius: 1rem;
    padding: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tips-conclusion p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    font-weight: 500;
}

.tips-conclusion strong {
    color: var(--accent-green);
    font-weight: 700;
}

.conclusion-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

/* Responsive Styles for Tips Section */
@media (max-width: 992px) {
    .tips-header h2 {
        font-size: 1.8rem;
    }

    .tips-grid {
        flex-direction: column-reverse;
    }

    .tips-image {
        margin-bottom: var(--spacing-md);
        max-width: 100%;
    }

    .tips-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tips-header h2 {
        font-size: 1.6rem;
    }

    .tips-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .tips-intro p,
    .tips-content p {
        font-size: 1rem;
    }

    .tips-conclusion p {
        font-size: 1rem;
    }

    .tips-badge {
        padding: 0.6rem 1.2rem;
        bottom: -10px;
        right: -10px;
    }

    .tips-badge i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .tips-header h2 {
        font-size: 1.4rem;
    }

    .tips-cards {
        grid-template-columns: 1fr;
    }

    .tip-icon {
        width: 60px;
        height: 60px;
    }

    .tip-icon i {
        font-size: 1.5rem;
    }

    .conclusion-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}