/* Header Styles */
.site-header {
    background-color: rgba(18, 18, 18, 0.97);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.logo-text .highlight {
    color: var(--primary-color);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-list a:hover {
    color: var(--text-primary);
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.btn-nav {
    background-color: transparent;
    color: var(--text-primary) !important;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-md);
    padding: 0.5rem 1rem !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: var(--primary-color);
    color: white !important;
}

.btn-nav::after {
    display: none !important;
}

.btn-register {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white !important;
}

.btn-register:hover {
    background-color: transparent;
    color: var(--text-primary) !important;
}

.mobile-nav-toggle {
    display: none;
}

.hamburger {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
}

.hamburger-line {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Footer Styles */
.site-footer {
    background-color: var(--bg-primary);
    padding: 4rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-right: 2rem;
}

.footer-tagline {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-section h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 0.8rem 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.sticky-btn:last-child {
    border-right: none;
}

.sticky-btn i {
    font-size: 1.2rem;
}

.sticky-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.sticky-btn:nth-child(2):hover {
    background-color: var(--accent-color);
}

.sticky-btn:nth-child(3):hover {
    background-color: var(--danger-color);
}

/* Adjustments for the rest of the page with fixed header */
body {
    padding-top: 70px;
    /* Height of the header */
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .nav-list {
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        justify-content: space-between;
    }
}

@media (max-width: 990px) {
    .mobile-nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-primary);
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .nav-list {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.2rem;
        align-items: flex-start;
    }

    .main-nav.active {
        height: auto;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .hamburger.active .hamburger-line:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .hamburger-line:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .nav-button {
        width: 100%;
    }

    .btn-nav {
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .sticky-btn {
        font-size: 0.8rem;
        padding: 0.7rem 0.3rem;
    }

    .sticky-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .sticky-btn {
        font-size: 0.75rem;
        padding: 0.6rem 0.2rem;
    }

    .sticky-btn i {
        font-size: 0.9rem;
    }
}

/* Base Styles & Theme */
:root {
    /* Dark Mode Color Scheme */
    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --bg-accent: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --primary-color: #ff9d00;
    --secondary-color: #8400ff;
    --accent-color: #00c3ff;
    --danger-color: #ff3a5e;
    --success-color: #00d67f;
    --border-color: #333333;
    --card-bg: #252525;
    --shadow-color: rgba(0, 0, 0, 0.5);
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    /* Section Padding */
    --section-padding-y: 4rem;
    --section-padding-x: 1.5rem;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: ' Sarabun', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: ' Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--section-padding-x);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: ' Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    gap: 0.5rem;
    min-width: 140px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--danger-color));
    color: white;
    box-shadow: 0 4px 10px rgba(255, 157, 0, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--danger-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 157, 0, 0.4);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 10px rgba(132, 0, 255, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(132, 0, 255, 0.4);
    color: white;
}

/* Sticky Bottom Buttons - These will be fixed at the bottom of the screen */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-buttons a {
    flex: 1;
    max-width: 200px;
    margin: 0 0.5rem;
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

/* Hero Section Styles */
.hero-section {
    padding: var(--section-padding-y) 0;
    background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 157, 0, 0.1), transparent 50%), radial-gradient(circle at 70% 70%, rgba(132, 0, 255, 0.1), transparent 50%);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: var(--spacing-xxl);
}

.hero-content {
    flex: 1;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    max-width: 550px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 30px var(--shadow-color);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    :root {
        --section-padding-y: 3rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: var(--spacing-xl);
        max-width: 100%;
        transform: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding-y: 2.5rem;
        --section-padding-x: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding-y: 2rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-sm);
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .sticky-buttons {
        padding: 0.5rem;
    }

    .sticky-buttons a {
        font-size: 0.75rem;
        padding: 0.5rem 0;
        margin: 0 0.25rem;
    }
}


/* Section 2: Casino Features Section Styles */
.features-section {
    padding: var(--section-padding-y) 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.features-section::after {
    content: ' ';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 195, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.features-section::before {
    content: ' ';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 157, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 1;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: ' ';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.features-content {
    display: flex;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.features-text {
    flex: 6;
}

.features-text p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    line-height: 1.7;
}

.features-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.features-cards {
    flex: 4;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.feature-card {
    background: linear-gradient(145deg, var(--card-bg), var(--bg-accent));
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 3px solid var(--primary-color);
}

.feature-card:nth-child(2) {
    border-left-color: var(--accent-color);
}

.feature-card:nth-child(3) {
    border-left-color: var(--secondary-color);
}

.feature-card::before {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 70%, rgba(255, 255, 255, 0.03) 100%);
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    display: inline-block;
    position: relative;
}

.feature-card:nth-child(2) .card-icon {
    color: var(--accent-color);
}

.feature-card:nth-child(3) .card-icon {
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-card:nth-child(2) .card-link {
    color: var(--accent-color);
}

.feature-card:nth-child(3) .card-link {
    color: var(--secondary-color);
}

.card-link:hover {
    gap: 0.8rem;
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(3px);
}

.cta-container {
    text-align: center;
    margin-top: var(--spacing-xxl);
    position: relative;
    z-index: 1;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    color: white;
    box-shadow: 0 4px 10px rgba(0, 195, 255, 0.3);
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
}

.btn-accent:hover,
.btn-accent:focus {
    background: linear-gradient(135deg, var(--success-color), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 195, 255, 0.4);
    color: white;
}

/* Media Queries for Feature Section */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 1.9rem;
    }

    .features-content {
        flex-direction: column;
    }

    .features-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.7rem;
    }

    .features-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card {
        padding: var(--spacing-lg);
    }

    .card-icon {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.5rem;
    }

    .features-cards {
        grid-template-columns: 1fr;
    }

    .btn-accent {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Section 3: Transaction System Section Styles */
.transaction-section {
    padding: var(--section-padding-y) 0;
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.transaction-section::before {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width=' 60' height=' 60' viewBox=' 0 0 60 60' xmlns=' http: //www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23444444' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: 0;
}

.transaction-content {
    display: flex;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 1;
    align-items: center;
}

.transaction-image {
    flex: 1;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px var(--shadow-color);
}

.transaction-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.transaction-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.9), transparent);
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.payment-icons {
    display: flex;
    gap: 1.5rem;
}

.payment-icons i {
    font-size: 1.8rem;
    color: white;
    background-color: rgba(255, 157, 0, 0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.payment-icons i:nth-child(2) {
    background-color: rgba(0, 195, 255, 0.2);
}

.payment-icons i:nth-child(3) {
    background-color: rgba(132, 0, 255, 0.2);
}

.payment-icons i:nth-child(4) {
    background-color: rgba(255, 58, 94, 0.2);
}

.payment-icons i:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
    color: white;
}

.transaction-text {
    flex: 1;
}

.transaction-text p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    line-height: 1.7;
}

.transaction-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.transaction-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 1;
}

.feature-item {
    background: linear-gradient(145deg, var(--bg-accent), var(--card-bg));
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    background-color: rgba(255, 157, 0, 0.1);
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:nth-child(2) .feature-icon {
    color: var(--accent-color);
    background-color: rgba(0, 195, 255, 0.1);
}

.feature-item:nth-child(3) .feature-icon {
    color: var(--secondary-color);
    background-color: rgba(132, 0, 255, 0.1);
}

.feature-item:nth-child(4) .feature-icon {
    color: var(--danger-color);
    background-color: rgba(255, 58, 94, 0.1);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.feature-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Media Queries for Transaction Section */
@media (max-width: 1024px) {
    .transaction-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .transaction-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item {
        padding: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .payment-icons i {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .feature-icon {
        font-size: 1.5rem;
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .feature-details h3 {
        font-size: 1rem;
    }

    .feature-details p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .transaction-features {
        grid-template-columns: 1fr;
    }

    .feature-item {
        text-align: left;
    }

    .image-overlay {
        padding: 1rem;
    }

    .payment-icons {
        gap: 0.8rem;
    }

    .payment-icons i {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }
}

/* Section 4: Security Features Section Styles */
.security-section {
    padding: var(--section-padding-y) 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(132, 0, 255, 0.05) 0%, transparent 30%), radial-gradient(circle at 80% 80%, rgba(0, 195, 255, 0.05) 0%, transparent 30%);
    z-index: 0;
}

.security-wrapper {
    position: relative;
    z-index: 1;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xxl);
}

.security-text p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    line-height: 1.7;
}

.security-text strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.security-shields {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
}

.shield-item {
    background: linear-gradient(145deg, var(--bg-accent), var(--card-bg));
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shield-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    top: 0;
    left: 0;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    opacity: 0.7;
}

.shield-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.shield-icon {
    margin: 0 auto var(--spacing-md);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    box-shadow: 0 5px 15px rgba(132, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.shield-item:hover .shield-icon {
    transform: scale(1.1) rotate(10deg);
}

.shield-item h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.shield-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.security-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 1;
}

.lock-animation {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(132, 0, 255, 0.3), 0 0 0 15px rgba(132, 0, 255, 0.1);
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(132, 0, 255, 0.3), 0 0 0 15px rgba(132, 0, 255, 0.1);
    }

    50% {
        box-shadow: 0 10px 30px rgba(132, 0, 255, 0.5), 0 0 0 20px rgba(132, 0, 255, 0.2);
    }

    100% {
        box-shadow: 0 10px 30px rgba(132, 0, 255, 0.3), 0 0 0 15px rgba(132, 0, 255, 0.1);
    }
}

.lock-animation i {
    font-size: 3rem;
    color: white;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.badge {
    background-color: var(--bg-accent);
    border-radius: 30px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
    background-color: var(--card-bg);
}

.badge i {
    color: var(--success-color);
}

/* Media Queries for Security Section */
@media (max-width: 1024px) {
    .security-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .security-shields {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shield-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .shield-item h3 {
        font-size: 1.1rem;
    }

    .security-graphic {
        flex-direction: column;
        text-align: center;
    }

    .security-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .security-shields {
        grid-template-columns: 1fr;
    }

    .shield-item {
        padding: var(--spacing-lg);
    }

    .lock-animation {
        width: 80px;
        height: 80px;
    }

    .lock-animation i {
        font-size: 2.5rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Section 5: Registration Guide Section Styles */
.guide-section {
    padding: var(--section-padding-y) 0;
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 157, 0, 0.05) 0%, transparent 50%), linear-gradient(225deg, rgba(132, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.guide-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xxl);
    position: relative;
    z-index: 1;
}

.guide-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.guide-intro strong {
    color: var(--primary-color);
    font-weight: 700;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-xxl);
}

.guide-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 45px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--danger-color));
    z-index: -1;
}

.step-card {
    display: flex;
    gap: var(--spacing-lg);
    background: linear-gradient(145deg, var(--bg-accent), var(--card-bg));
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--danger-color));
    color: white;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 157, 0, 0.3);
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.step-content strong {
    color: var(--accent-color);
    font-weight: 700;
}

.step-content ol,
.step-content ul {
    color: var(--text-secondary);
    margin-left: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.step-content li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.step-content ul li {
    list-style-type: disc;
}

.guide-image-wrapper {
    position: relative;
    z-index: 1;
}

.guide-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px var(--shadow-color);
    max-width: 900px;
    margin: 0 auto;
}

.guide-image img {
    width: 100%;
    height: auto;
    display: block;
}

.guide-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.7), transparent);
    display: flex;
    align-items: center;
    padding: var(--spacing-xxl);
}

.overlay-text {
    max-width: 350px;
}

.overlay-text h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
}

.overlay-text p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

/* Media Queries for Guide Section */
@media (max-width: 1024px) {
    .guide-steps::before {
        left: 40px;
    }

    .step-card {
        padding: var(--spacing-lg);
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .overlay-text h3 {
        font-size: 1.5rem;
    }

    .overlay-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .guide-steps::before {
        left: 35px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        min-width: 40px;
    }

    .step-card {
        gap: var(--spacing-md);
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .guide-image .image-overlay {
        background: linear-gradient(to bottom, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.7), transparent);
        justify-content: center;
        text-align: center;
        padding: var(--spacing-lg);
    }

    .overlay-text {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .guide-intro p {
        font-size: 1rem;
    }

    .guide-steps::before {
        display: none;
    }

    .step-card {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .step-number {
        margin-bottom: var(--spacing-sm);
    }

    .overlay-text h3 {
        font-size: 1.3rem;
    }

    .overlay-text p {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-md);
    }
}

/* Section 6: Platform Comparison Section Styles */
.comparison-section {
    padding: var(--section-padding-y) 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 90%, rgba(255, 157, 0, 0.05) 0%, transparent 40%), radial-gradient(circle at 90% 10%, rgba(0, 195, 255, 0.05) 0%, transparent 40%);
    z-index: 0;
}

.comparison-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-xxl);
    position: relative;
    z-index: 1;
}

.comparison-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.comparison-intro strong {
    color: var(--primary-color);
    font-weight: 700;
}

.comparison-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 1;
}

.feature-comparison {
    background: linear-gradient(145deg, var(--bg-accent), var(--card-bg));
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-comparison:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-header {
    background: linear-gradient(to right, rgba(255, 157, 0, 0.2), transparent);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.feature-comparison:nth-child(2) .feature-header {
    background: linear-gradient(to right, rgba(0, 195, 255, 0.2), transparent);
}

.feature-comparison:nth-child(3) .feature-header {
    background: linear-gradient(to right, rgba(132, 0, 255, 0.2), transparent);
}

.feature-comparison:nth-child(4) .feature-header {
    background: linear-gradient(to right, rgba(255, 58, 94, 0.2), transparent);
}

.feature-comparison:nth-child(5) .feature-header {
    background: linear-gradient(to right, rgba(0, 214, 127, 0.2), transparent);
}

.feature-comparison:nth-child(6) .feature-header {
    background: linear-gradient(to right, rgba(255, 157, 0, 0.2), transparent);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--bg-primary);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.feature-comparison:nth-child(2) .feature-icon {
    color: var(--accent-color);
}

.feature-comparison:nth-child(3) .feature-icon {
    color: var(--secondary-color);
}

.feature-comparison:nth-child(4) .feature-icon {
    color: var(--danger-color);
}

.feature-comparison:nth-child(5) .feature-icon {
    color: var(--success-color);
}

.feature-comparison:nth-child(6) .feature-icon {
    color: var(--primary-color);
}

.feature-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.feature-details {
    padding: var(--spacing-lg);
}

.feature-details p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.feature-details strong {
    color: var(--accent-color);
    font-weight: 700;
}

.feature-details ul {
    color: var(--text-secondary);
    margin-left: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.feature-details li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.comparison-conclusion {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-xxl);
    padding: var(--spacing-xl);
    background: linear-gradient(145deg, var(--bg-accent), var(--card-bg));
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    border-left: 4px solid var(--primary-color);
}

.comparison-conclusion p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.comparison-conclusion p:last-child {
    margin-bottom: 0;
}

.comparison-conclusion strong {
    color: var(--primary-color);
    font-weight: 700;
}

.comparison-conclusion a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 700;
    transition: all 0.3s ease;
}

.comparison-conclusion a:hover {
    color: var(--primary-color);
}

.comparison-chart {
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 1;
}

.chart-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.chart-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    display: inline-block;
    position: relative;
}

.chart-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--danger-color));
    border-radius: 3px;
}

.chart-table {
    overflow-x: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-accent);
}

th,
td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

td {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background-color: rgba(255, 255, 255, 0.03);
}

.success-icon {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.danger-icon {
    color: var(--danger-color);
    margin-right: 0.5rem;
}

.warning-icon {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Media Queries for Comparison Section */
@media (max-width: 1024px) {
    .chart-header h3 {
        font-size: 1.3rem;
    }

    th,
    td {
        padding: 0.8rem 1.2rem;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1.3rem;
    }

    .feature-header h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .comparison-intro p {
        font-size: 1rem;
    }

    .feature-header {
        padding: var(--spacing-md);
    }

    .feature-details {
        padding: var(--spacing-md);
    }

    .chart-header h3 {
        font-size: 1.2rem;
    }

    th,
    td {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    th {
        font-size: 0.8rem;
    }

    .comparison-conclusion {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .feature-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .feature-header h3 {
        font-size: 1rem;
    }

    .chart-header h3 {
        font-size: 1.1rem;
    }

    th,
    td {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }

    th {
        font-size: 0.75rem;
    }

    .feature-details ul {
        margin-left: var(--spacing-lg);
    }

    .comparison-conclusion {
        padding: var(--spacing-md);
        text-align: left;
    }
}