/* Header and Navigation Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: 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);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 10px 0;
    background-color: rgba(5, 5, 5, 0.98);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
}

.logo-text {
    background: linear-gradient(to right, var(--text-primary), #d9d9d9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-text .highlight {
    background: linear-gradient(to right, var(--primary-color), #ff3300);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list li a {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-list li a:hover {
    color: var(--text-primary);
}

.nav-list li a:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 10px;
}

.btn-nav {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 5px;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease !important;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-nav::after {
    display: none !important;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-toggle:hover {
    color: var(--primary-color);
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 999;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sticky-buttons a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-family: var(--heading-font);
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sticky-buttons a:nth-child(1) {
    background: linear-gradient(135deg, #333333, #222222);
}

.sticky-buttons a:nth-child(2) {
    background: var(--gradient-primary);
}

.sticky-buttons a:nth-child(3) {
    background: var(--gradient-secondary);
}

.sticky-buttons a i {
    margin-right: 8px;
    font-size: 18px;
}

.sticky-buttons a:hover {
    transform: translateY(-5px);
}

/* Footer Styles */
.site-footer {
    background-color: var(--darker-bg);
    padding: 60px 0 20px;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 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='%23ffffff' fill-opacity='0.03'%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.1;
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 280px;
}

.footer-logo .logo-text {
    font-size: 32px;
    font-family: var(--heading-font);
    font-weight: 700;
    background: linear-gradient(to right, var(--text-primary), #d9d9d9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 15px;
}

.footer-logo .logo-text .highlight {
    background: linear-gradient(to right, var(--primary-color), #ff3300);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 300px;
    line-height: 1.5;
}

.footer-nav {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h3 {
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 15px;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.contact-list li {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 15px;
}

.contact-list li i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-methods,
.social-media {
    flex: 1;
    min-width: 280px;
}

.payment-methods h4,
.social-media h4 {
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons i {
    font-size: 24px;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 5px;
}

.disclaimer {
    font-style: italic;
}

/* Adjustments for the body to accommodate fixed header and sticky footer buttons */
body {
    padding-top: 80px;
    /* Height of the header */
    padding-bottom: 54px;
    /* Height of the sticky buttons */
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 1024px) {
    .nav-list li {
        margin: 0 10px;
    }

    .logo a {
        font-size: 24px;
    }

    .btn-nav {
        padding: 8px 16px !important;
    }

    body {
        padding-top: 70px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-nav {
        gap: 20px;
    }

    .footer-logo .logo-text {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-list li {
        margin: 15px 0;
        width: 100%;
    }

    .nav-list li a {
        display: block;
        font-size: 18px;
        padding: 10px 0;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }

    .btn-nav {
        display: block;
        text-align: center;
        width: 100%;
    }

    body {
        padding-top: 65px;
    }

    .site-header.scrolled {
        padding: 8px 0;
    }

    .site-footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-tagline {
        max-width: none;
    }

    .footer-nav {
        justify-content: space-between;
    }

    .footer-links {
        min-width: 150px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
    }

    .payment-methods,
    .social-media {
        text-align: center;
    }

    .payment-icons,
    .social-icons {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .logo a {
        font-size: 22px;
    }

    .sticky-buttons a {
        padding: 12px 8px;
        font-size: 14px;
    }

    .sticky-buttons a i {
        margin-right: 5px;
        font-size: 16px;
    }

    body {
        padding-top: 60px;
        padding-bottom: 48px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        min-width: 100%;
    }

    .footer-links h3 {
        text-align: center;
    }

    .footer-links h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul {
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .footer-logo .logo-text {
        font-size: 26px;
    }
}

/* Base Theme Styles */
:root {
    /* Colors */
    --primary-color: #ff6b00;
    --secondary-color: #19a1ff;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --card-bg: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #a0a0a0;
    --border-color: #333333;
    --gradient-primary: linear-gradient(135deg, #ff6b00, #ff3300);
    --gradient-secondary: linear-gradient(135deg, #19a1ff, #0066cc);
    /* Typography */
    --heading-font: 'Prompt', sans-serif;
    --body-font: 'Sarabun', sans-serif;
    /* Layout */
    --section-spacing: 80px;
    --container-padding: 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;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-primary);
}

h1 {
    font-size: 36px;
}

p {
    margin-bottom: 20px;
    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 */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 5px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    color: white;
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(25, 161, 255, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(25, 161, 255, 0.4);
    color: white;
}

/* Hero Section Styles */
.hero-section {
    padding: 120px 0 100px;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.1), transparent 60%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-section h1 {
    margin-bottom: 25px;
    font-size: 42px;
    background: linear-gradient(to right, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-section p {
    font-size: 18px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    background: linear-gradient(225deg, var(--card-bg), var(--darker-bg));
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 1024px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .hero-section p {
        font-size: 17px;
    }

    .hero-section {
        padding: 100px 0 80px;
    }
}

@media screen and (max-width: 768px) {
    .hero-section .container {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
        order: 2;
    }

    .hero-image {
        max-width: 100%;
        margin-bottom: 40px;
        order: 1;
    }

    .hero-section h1 {
        font-size: 32px;
        text-align: center;
    }

    .hero-section p {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
        margin-right: 0;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* Features Section Styles */
.features-section {
    padding: var(--section-spacing) 0;
    background-color: var(--dark-bg);
    position: relative;
}

.features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 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='%23333333' fill-opacity='0.2'%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.1;
    z-index: 1;
    pointer-events: none;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.features-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.features-text {
    flex: 1;
}

.features-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.features-text p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.features-text p a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 700;
}

.features-text p a:hover {
    color: var(--primary-color);
}

.features-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    position: relative;
}

.features-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(25, 161, 255, 0.2));
    z-index: 1;
}

.features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
    transition: transform 0.5s ease;
}

.features-image:hover img {
    transform: scale(1.05);
}

.features-highlights {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.features-list {
    list-style-type: none;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.features-list li i {
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 15px;
    background: rgba(255, 107, 0, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-cta {
    text-align: center;
    margin-top: 30px;
}

.additional-info {
    background: linear-gradient(to bottom, var(--dark-bg), var(--darker-bg));
    border-radius: 15px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.additional-info p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.additional-info p:last-child {
    margin-bottom: 0;
}

.additional-info strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 1024px) {
    .section-header h2 {
        font-size: 28px;
    }

    .features-list li {
        font-size: 16px;
    }

    .features-highlights {
        padding: 30px;
    }

    .additional-info {
        padding: 30px;
    }
}

@media screen and (max-width: 768px) {
    .features-content {
        flex-direction: column-reverse;
    }

    .features-text,
    .features-image {
        flex: none;
        width: 100%;
    }

    .features-image {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .features-highlights {
        padding: 25px;
    }

    .additional-info {
        padding: 25px;
    }
}

@media screen and (max-width: 480px) {
    .section-header h2 {
        font-size: 24px;
    }

    .features-list li i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .features-highlights {
        padding: 20px;
    }

    .additional-info {
        padding: 20px;
    }
}

/* Security Section Styles */
.security-section {
    padding: var(--section-spacing) 0;
    background-color: var(--darker-bg);
    position: relative;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.security-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.security-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.security-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.security-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.security-image:hover img {
    transform: scale(1.05);
}

.security-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color), #0045a5);
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.security-badge i {
    font-size: 18px;
}

.security-text {
    flex: 1;
}

.security-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.security-text p:last-child {
    margin-bottom: 0;
}

.security-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.security-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.check-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.check-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.check-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(25, 161, 255, 0.1), rgba(0, 69, 165, 0.1));
    color: var(--secondary-color);
    font-size: 24px;
    flex-shrink: 0;
}

.check-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.check-info p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.security-warnings {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.warning-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.warning-content p:last-child {
    margin-bottom: 0;
}

.warning-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.warning-alert {
    margin-top: 30px;
    background: linear-gradient(to right, rgba(255, 107, 0, 0.05), rgba(255, 107, 0, 0.1));
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    border-left: 4px solid var(--primary-color);
}

.alert-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}

.alert-message h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.alert-message p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.alert-message p:last-child {
    margin-bottom: 0;
}

.security-cta {
    text-align: center;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 1024px) {
    .security-checks {
        gap: 20px;
    }

    .check-card {
        padding: 20px;
    }

    .check-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .check-info h3 {
        font-size: 18px;
    }

    .security-warnings {
        padding: 30px;
    }

    .warning-alert {
        padding: 20px;
    }
}

@media screen and (max-width: 768px) {
    .security-content {
        flex-direction: column;
    }

    .security-image,
    .security-text {
        flex: none;
        width: 100%;
    }

    .security-image {
        margin-bottom: 30px;
    }

    .security-checks {
        grid-template-columns: 1fr;
    }

    .warning-alert {
        flex-direction: column;
        align-items: flex-start;
    }

    .alert-icon {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 480px) {
    .check-card {
        flex-direction: column;
    }

    .check-icon {
        margin-bottom: 15px;
    }

    .security-warnings {
        padding: 20px;
    }

    .warning-alert {
        padding: 15px;
    }

    .security-badge {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .security-badge i {
        font-size: 14px;
    }
}

/* Games Section Styles */
.games-section {
    padding: var(--section-spacing) 0;
    background-color: var(--dark-bg);
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 107, 0, 0.03));
    z-index: 1;
    pointer-events: none;
}

.games-section .container {
    position: relative;
    z-index: 2;
}

.games-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.games-intro p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.games-intro p:last-child {
    margin-bottom: 0;
}

.games-intro strong {
    color: var(--primary-color);
    font-weight: 700;
}

.games-reasons {
    background: linear-gradient(to bottom right, var(--card-bg), rgba(30, 30, 30, 0.7));
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.games-reasons h3 {
    font-size: 26px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.reason-card {
    background: rgba(20, 20, 20, 0.5);
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-color);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.reason-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff3300);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.reason-icon i {
    font-size: 28px;
    color: white;
}

.reason-content h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.reason-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.bonus-note {
    background: linear-gradient(to right, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.05));
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    margin-top: 15px;
    border-left: 3px solid var(--primary-color);
}

.bonus-note strong {
    color: var(--primary-color);
    font-weight: 700;
}

.convenience-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.convenience-content {
    flex: 1;
}

.convenience-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.convenience-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.convenience-content p:last-child {
    margin-bottom: 0;
}

.convenience-content strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.convenience-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.convenience-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 161, 255, 0.2), transparent);
    z-index: 1;
}

.convenience-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.convenience-image:hover img {
    transform: scale(1.05);
}

.other-games {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.other-games h3 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-primary);
}

.other-games>p {
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.game-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.game-type {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.6), rgba(30, 30, 30, 0.6));
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-type:hover {
    transform: translateY(-8px);
}

.game-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), #0066cc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.game-icon i {
    font-size: 35px;
    color: white;
}

.game-type h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.game-type p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.conclusion {
    text-align: center;
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.conclusion strong {
    color: var(--primary-color);
    font-weight: 700;
}

.games-cta {
    text-align: center;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 1024px) {
    .reasons-grid {
        gap: 20px;
    }

    .game-types {
        gap: 20px;
    }

    .reason-icon {
        width: 60px;
        height: 60px;
    }

    .reason-icon i {
        font-size: 24px;
    }

    .games-reasons {
        padding: 30px;
    }

    .other-games {
        padding: 30px;
    }

    .convenience-section {
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .game-types {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .convenience-section {
        flex-direction: column-reverse;
    }

    .convenience-content,
    .convenience-image {
        flex: none;
        width: 100%;
    }

    .convenience-image {
        margin-bottom: 30px;
    }

    .games-reasons {
        padding: 25px;
    }

    .other-games {
        padding: 25px;
    }

    .reason-card {
        padding: 20px;
    }

    .game-type {
        padding: 25px 15px;
    }
}

@media screen and (max-width: 480px) {
    .games-reasons h3 {
        font-size: 22px;
    }

    .convenience-content h3 {
        font-size: 22px;
    }

    .other-games h3 {
        font-size: 22px;
    }

    .reason-icon {
        width: 50px;
        height: 50px;
    }

    .reason-icon i {
        font-size: 20px;
    }

    .game-icon {
        width: 60px;
        height: 60px;
    }

    .game-icon i {
        font-size: 26px;
    }

    .games-reasons {
        padding: 20px;
    }

    .other-games {
        padding: 20px;
    }

    .bonus-note {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* Header and Navigation Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: 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);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 10px 0;
    background-color: rgba(5, 5, 5, 0.98);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
}

.logo-text {
    background: linear-gradient(to right, var(--text-primary), #d9d9d9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-text .highlight {
    background: linear-gradient(to right, var(--primary-color), #ff3300);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list li a {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-list li a:hover {
    color: var(--text-primary);
}

.nav-list li a:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 10px;
}

.btn-nav {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 5px;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease !important;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-nav::after {
    display: none !important;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-toggle:hover {
    color: var(--primary-color);
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 999;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sticky-buttons a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-family: var(--heading-font);
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sticky-buttons a:nth-child(1) {
    background: linear-gradient(135deg, #333333, #222222);
}

.sticky-buttons a:nth-child(2) {
    background: var(--gradient-primary);
}

.sticky-buttons a:nth-child(3) {
    background: var(--gradient-secondary);
}

.sticky-buttons a i {
    margin-right: 8px;
    font-size: 18px;
}

.sticky-buttons a:hover {
    transform: translateY(-5px);
}

/* Adjustments for the body to accommodate fixed header */
body {
    padding-top: 80px;
    /* Height of the header */
    padding-bottom: 54px;
    /* Height of the sticky buttons */
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 1024px) {
    .nav-list li {
        margin: 0 10px;
    }

    .logo a {
        font-size: 24px;
    }

    .btn-nav {
        padding: 8px 16px !important;
    }

    body {
        padding-top: 70px;
    }
}

@media screen and (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-list li {
        margin: 15px 0;
        width: 100%;
    }

    .nav-list li a {
        display: block;
        font-size: 18px;
        padding: 10px 0;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }

    .btn-nav {
        display: block;
        text-align: center;
        width: 100%;
    }

    body {
        padding-top: 65px;
    }

    .site-header.scrolled {
        padding: 8px 0;
    }
}

@media screen and (max-width: 480px) {
    .logo a {
        font-size: 22px;
    }

    .sticky-buttons a {
        padding: 12px 8px;
        font-size: 14px;
    }

    .sticky-buttons a i {
        margin-right: 5px;
        font-size: 16px;
    }

    body {
        padding-top: 60px;
        padding-bottom: 48px;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--darker-bg);
    padding: 60px 0 20px;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 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='%23ffffff' fill-opacity='0.03'%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.1;
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 280px;
}

.footer-logo .logo-text {
    font-size: 32px;
    font-family: var(--heading-font);
    font-weight: 700;
    background: linear-gradient(to right, var(--text-primary), #d9d9d9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 15px;
}

.footer-logo .logo-text .highlight {
    background: linear-gradient(to right, var(--primary-color), #ff3300);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 300px;
    line-height: 1.5;
}

.footer-nav {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h3 {
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.contact-list li {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 15px;
}

.contact-list li i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-methods,
.social-media {
    flex: 1;
    min-width: 280px;
}

.payment-methods h4,
.social-media h4 {
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons i {
    font-size: 24px;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 5px;
}

.disclaimer {
    font-style: italic;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 1024px) {
    .footer-content {
        gap: 30px;
    }

    .footer-nav {
        gap: 20px;
    }

    .footer-logo .logo-text {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .site-footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-tagline {
        max-width: none;
    }

    .footer-nav {
        justify-content: space-between;
    }

    .footer-links {
        min-width: 150px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
    }

    .payment-methods,
    .social-media {
        text-align: center;
    }

    .payment-icons,
    .social-icons {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        min-width: 100%;
    }

    .footer-links h3 {
        text-align: center;
    }

    .footer-links h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul {
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .footer-logo .logo-text {
        font-size: 26px;
    }
}