/* ===== HEADER STYLES ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-container {
    z-index: 1001;
}

.logo {
    display: inline-block;
    text-decoration: none;
}

.logo-text {
    font-family: var(--heading-font);
    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;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: block;
    padding: 8px 15px;
    color: var(--text-secondary);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-menu li a:hover {
    color: var(--text-primary);
}

.nav-cta .btn-nav {
    background: linear-gradient(135deg, var(--primary-color), #003399);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-cta .btn-nav:hover {
    background: linear-gradient(135deg, #0055cc, #002266);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.toggle-bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== FOOTER STYLES ===== */
.site-footer {
    background-color: var(--darker-bg);
    color: var(--text-secondary);
    padding: 60px 0 30px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3) 20%, rgba(255, 102, 0, 0.3) 50%, rgba(0, 102, 255, 0.3) 80%, transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo .logo-text {
    font-size: 2rem;
    margin-bottom: 15px;
    display: inline-block;
}

.tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links-column {
    min-width: 150px;
}

.footer-links-column h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-links-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: block;
}

.footer-links-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.7;
    max-width: 600px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.payment-methods i {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: var(--primary-color);
}

/* ===== STICKY BOTTOM BUTTONS STYLES ===== */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 10px 15px;
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 5px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.sticky-btn span {
    font-size: 0.9rem;
    font-weight: 600;
}

.login-btn {
    background-color: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
}

.login-btn:hover {
    background-color: rgba(0, 102, 255, 0.2);
    color: var(--primary-color);
}

.register-btn {
    background-color: var(--primary-color);
    color: white;
    margin: 0 10px;
}

.register-btn:hover {
    background-color: #0055cc;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
    color: white;
}

.bonus-btn {
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--secondary-color);
}

.bonus-btn:hover {
    background-color: rgba(255, 102, 0, 0.2);
    color: var(--secondary-color);
}

/* ===== ADJUST BODY PADDING TO ACCOUNT FOR FIXED HEADER AND STICKY BUTTONS ===== */
body {
    padding-top: 70px;
    /* Height of header */
    padding-bottom: 70px;
    /* Height of sticky buttons */
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .nav-menu {
        gap: 5px;
    }

    .nav-menu li a {
        padding: 8px 10px;
        font-size: 0.9rem;
    }

    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--darker-bg);
        padding: 80px 20px 30px;
        transition: all 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .main-navigation.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        padding: 15px 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-cta {
        margin-top: 15px;
    }

    .nav-cta .btn-nav {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .mobile-menu-toggle.active .toggle-bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle.active .toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .toggle-bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .sticky-buttons {
        padding: 8px 10px;
    }

    .sticky-btn {
        padding: 5px;
    }

    .sticky-btn i {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }

    .sticky-btn span {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
    
    .hero-section .container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        max-width: 100%;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .floating-badges {
        flex-direction: row;
        bottom: -20px;
        top: auto;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .trust-content {
        flex-direction: column;
    }

    .trust-visual {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .trust-checklist li {
        padding: 15px;
    }
    
    .domain-content {
        flex-direction: column-reverse;
    }

    .domain-visual {
        width: 100%;
    }

    .domain-info-grid {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 12px;
    }
    
    .warning-content {
        flex-direction: column;
    }

    .warning-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 30px;
    }
    
    .context-content {
        flex-direction: column;
    }

    .context-visual {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .meaning-cards {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .banner-text {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .sticky-buttons {
        padding: 5px;
    }

    .sticky-btn {
        padding: 5px 2px;
    }

    .register-btn {
        margin: 0 5px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 25px;
    }

    .footer-links-column {
        width: 100%;
    }

    .payment-methods {
        gap: 10px;
    }

    .payment-methods i {
        font-size: 1.3rem;
    }

    .footer-bottom {
        gap: 10px;
    }
    
    h1 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .floating-badges {
        position: relative;
        margin-top: 20px;
    }

    .badge {
        padding: 8px 15px;
    }

    .badge i {
        font-size: 1rem;
    }

    .badge span {
        font-size: 0.8rem;
    }
}

/* ===== BASE STYLES & THEME ===== */
:root {
    /* Dark Mode Theme Colors */
    --primary-color: #0066ff;
    --secondary-color: #ff6600;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --card-bg: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #333333;
    --success-color: #00c853;
    --warning-color: #ffab00;
    /* Typography */
    --heading-font: 'Prompt', sans-serif;
    --body-font: 'Sarabun', sans-serif;
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container for site content width */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--heading-font);
    gap: 10px;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #003399);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0055cc, #002266);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #cc5200);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ff8533, #993d00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    color: white;
}

/* Section common styles */
section {
    padding: var(--section-padding);
    position: relative;
}

/* ===== HERO SECTION STYLES ===== */
.hero-section {
    background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/waiwai555 (5).webp') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.hero-image .main-image {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover .main-image {
    transform: perspective(1000px) rotateY(0);
}

.floating-badges {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 15px;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.badge {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.badge:nth-child(2) {
    animation-delay: 0.5s;
}

.badge:nth-child(3) {
    animation-delay: 1s;
}

.badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.badge span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .hero-section {
        padding: 100px 0 80px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section .container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        max-width: 100%;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .floating-badges {
        flex-direction: row;
        bottom: -20px;
        top: auto;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .floating-badges {
        position: relative;
        margin-top: 20px;
    }

    .badge {
        padding: 8px 15px;
    }

    .badge i {
        font-size: 1rem;
    }

    .badge span {
        font-size: 0.8rem;
    }
}

/* ===== TRUST AND SAFETY SECTION STYLES ===== */
.trust-safety-section {
    background-color: var(--darker-bg);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.trust-safety-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 102, 255, 0.1), transparent 60%), radial-gradient(circle at bottom left, rgba(255, 102, 0, 0.1), transparent 60%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--text-primary);
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
}

.section-header h2 i {
    color: var(--primary-color);
    margin-right: 12px;
}

.section-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;
}

.trust-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.trust-text {
    flex: 1;
}

.trust-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.trust-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.trust-checklist {
    list-style-type: none;
    margin: 25px 0;
}

.trust-checklist li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-checklist li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.trust-checklist li i {
    font-size: 1.5rem;
    color: var(--success-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.trust-checklist li strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.trust-visual {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-score-card {
    background: linear-gradient(145deg, #1a1a1a, #242424);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.score-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.score-header i {
    font-size: 1.8rem;
    color: var(--warning-color);
}

.score-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--text-primary);
}

.score-meter {
    margin-bottom: 25px;
}

.meter-bar {
    height: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.meter-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 98%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    animation: fillMeter 2s ease-out;
}

@keyframes fillMeter {
    from {
        width: 0;
    }

    to {
        width: 98%;
    }
}

.meter-value {
    text-align: right;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.trust-features {
    list-style-type: none;
    margin: 0 0 25px 0;
    padding: 0;
}

.trust-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-features li:last-child {
    border-bottom: none;
}

.trust-features li i {
    color: var(--primary-color);
}

.security-icons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.security-icon {
    background-color: rgba(30, 30, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    flex: 1;
    transition: transform 0.3s ease;
}

.security-icon:hover {
    transform: translateY(-5px);
}

.security-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.security-icon span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .trust-visual {
        flex: 0 0 340px;
    }
}

@media (max-width: 768px) {
    .trust-content {
        flex-direction: column;
    }

    .trust-visual {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .trust-checklist li {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.5rem;
    }

    .trust-checklist li {
        flex-direction: column;
        gap: 10px;
    }

    .trust-checklist li i {
        margin-bottom: 5px;
    }

    .security-icons {
        flex-direction: column;
    }

    .score-header {
        flex-direction: column;
        text-align: center;
    }

    .score-header h3 {
        font-size: 1.3rem;
    }
}

/* Domain Information Section Styles */
.domain-info-section {
    background-color: var(--dark-bg);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.domain-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/waiwai555 (6).webp') center/cover no-repeat;
    opacity: 0.03;
    z-index: 0;
}

.domain-content {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.domain-visual {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.domain-text {
    flex: 1;
}

.domain-card {
    background: linear-gradient(145deg, #1a1a1a, #242424);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 20px;
}

.domain-icon {
    flex: 0 0 70px;
    height: 70px;
    width: 70px;
    background: linear-gradient(135deg, var(--primary-color), #003399);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.domain-icon i {
    font-size: 2.2rem;
    color: white;
}

.domain-details {
    flex: 1;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.detail-value {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.domain-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-box {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    flex: 0 0 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--secondary-color), #cc5200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    color: white;
    font-size: 1.2rem;
}

.stat-info {
    flex: 1;
    text-align: left;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.domain-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.domain-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.domain-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.info-card {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.info-icon {
    flex: 0 0 50px;
    height: 50px;
    width: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), #003399);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    color: white;
    font-size: 1.5rem;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.info-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.domain-cta {
    margin-top: 30px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .domain-content {
        gap: 30px;
    }

    .domain-visual {
        flex: 0 0 340px;
    }

    .domain-info-grid {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .domain-content {
        flex-direction: column-reverse;
    }

    .domain-visual {
        width: 100%;
    }

    .domain-info-grid {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .domain-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .domain-details {
        width: 100%;
    }

    .detail-item {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }

    .domain-stats {
        grid-template-columns: 1fr;
    }

    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-content h3 {
        text-align: center;
    }
}

/* ===== WARNING SIGNS SECTION STYLES ===== */
.warning-signs-section {
    background-color: var(--darker-bg);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.warning-signs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(255, 102, 0, 0.1), transparent 60%), radial-gradient(circle at top left, rgba(0, 102, 255, 0.1), transparent 60%);
    z-index: 0;
}

.warning-content {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.warning-image {
    flex: 0 0 380px;
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.warning-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover .warning-main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.overlay-icon {
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.overlay-icon i {
    color: white;
    font-size: 1.5rem;
}

.overlay-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.trust-badge {
    background: linear-gradient(145deg, #1a1a1a, #242424);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    position: relative;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, #1a1a1a, #242424);
    transform: rotate(45deg);
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    z-index: -1;
}

.badge-icon {
    background-color: var(--success-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    color: white;
    font-size: 1.2rem;
}

.badge-text {
    flex: 1;
}

.badge-text span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.badge-text strong {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.warning-text {
    flex: 1;
}

.warning-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.warning-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.warning-list {
    margin: 30px 0;
}

.warning-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.warning-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.warning-icon {
    flex: 0 0 50px;
    height: 50px;
    width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--warning-color), #cc8800);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.warning-icon i {
    color: white;
    font-size: 1.5rem;
}

.warning-item-content {
    flex: 1;
}

.warning-item-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.warning-item-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.warning-cta {
    margin-top: 30px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .warning-content {
        gap: 30px;
    }

    .warning-image {
        flex: 0 0 340px;
    }

    .overlay-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .warning-content {
        flex-direction: column;
    }

    .warning-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 30px;
    }
}

@media (max-width: 576px) {
    .warning-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }

    .warning-icon {
        margin-bottom: 10px;
    }

    .warning-item-content h3 {
        text-align: center;
    }

    .image-overlay {
        flex-direction: column;
        text-align: center;
    }

    .overlay-text {
        font-size: 1rem;
    }

    .trust-badge {
        flex-direction: column;
        text-align: center;
    }

    .trust-badge::before {
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
    }

    .badge-text span,
    .badge-text strong {
        text-align: center;
    }
}

/* ===== THAI CULTURAL CONTEXT SECTION STYLES ===== */
.thai-context-section {
    background-color: var(--dark-bg);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.thai-context-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/waiwai555 (7).webp') center/cover no-repeat;
    opacity: 0.03;
    z-index: 0;
}

.context-content {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.context-text {
    flex: 1;
}

.context-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.context-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.context-text a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.context-text a:hover {
    color: var(--primary-color);
}

.meaning-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.meaning-card {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.meaning-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-icon {
    flex: 0 0 50px;
    height: 50px;
    width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), #003399);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.meaning-card:nth-child(even) .card-icon {
    background: linear-gradient(135deg, var(--secondary-color), #cc5200);
}

.card-icon i {
    color: white;
    font-size: 1.5rem;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.card-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.context-visual {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.culture-visual {
    background: linear-gradient(145deg, #1a1a1a, #242424);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    position: relative;
}

.waiwai-symbol {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.symbol-text {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--heading-font);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 102, 255, 0.3);
    letter-spacing: 1px;
}

.symbol-number {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: var(--secondary-color);
    font-family: var(--heading-font);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(255, 102, 0, 0.3);
    letter-spacing: 2px;
}

.culture-element {
    position: relative;
    z-index: 0;
}

.thai-pattern {
    padding: 20px 0;
}

.pattern-line {
    height: 5px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3) 10%, rgba(255, 102, 0, 0.3) 50%, rgba(0, 102, 255, 0.3) 90%, transparent);
    margin: 10px 0;
    border-radius: 10px;
    position: relative;
}

.pattern-line::before,
.pattern-line::after {
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.pattern-line::before {
    left: 30%;
    background: var(--primary-color);
}

.pattern-line::after {
    right: 30%;
    background: var(--secondary-color);
}

.pattern-line:nth-child(2) {
    opacity: 0.7;
}

.pattern-line:nth-child(3) {
    opacity: 0.4;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.feature-box {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #003399);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-box h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-box p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-secondary);
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), #003399);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.banner-text h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: white;
}

.banner-text p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

.cta-banner .btn {
    background: white;
    color: var(--primary-color);
}

.cta-banner .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .context-content {
        gap: 30px;
    }

    .context-visual {
        flex: 0 0 340px;
    }

    .meaning-cards {
        gap: 20px;
    }

    .meaning-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .context-content {
        flex-direction: column;
    }

    .context-visual {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .meaning-cards {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .banner-text {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .meaning-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .card-icon {
        margin-bottom: 10px;
    }

    .card-content h3 {
        text-align: center;
    }

    .feature-boxes {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .symbol-text {
        font-size: 2rem;
    }

    .symbol-number {
        font-size: 3rem;
    }
}
