/* Header Styles */
.site-header {
    background-color: rgba(15, 23, 42, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    height: 80px;
}

.site-branding {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: baseline;
    text-decoration: none;
    color: var(--text-lighter);
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
    color: var(--text-lighter);
}

.site-logo {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-tagline {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0 0.25rem;
    position: relative;
}

.menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.menu li a:hover {
    color: var(--secondary-color);
}

.menu .menu-button {
    margin-left: 1rem;
}

.menu .menu-button a {
    padding: 0.5rem 1.25rem;
}

/* Add padding to body to account for fixed header */
body {
    padding-top: 80px;
}

/* Footer Styles */
.site-footer {
    background-color: var(--bg-card);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-branding {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    text-decoration: none;
    color: var(--text-lighter);
    margin-bottom: 1.5rem;
}

.footer-logo:hover {
    color: var(--text-lighter);
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 160px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-lighter);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-column a::before {
    content: '›';
    margin-right: 0.5rem;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-5px);
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-column a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: var(--text-muted);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(126, 34, 206, 0.1);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--text-lighter);
    transform: translateY(-3px);
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 999;
    background: linear-gradient(to right, var(--bg-dark), var(--bg-card));
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.sticky-btn:hover {
    color: var(--text-lighter);
}

.login-btn {
    background-color: var(--primary-color);
}

.login-btn:hover {
    background-color: var(--primary-hover);
}

.register-btn {
    background-color: var(--secondary-color);
}

.register-btn:hover {
    background-color: var(--secondary-hover);
}

.bonus-btn {
    background-color: var(--success-color);
}

.bonus-btn:hover {
    background-color: #0ca678;
}

.sticky-btn i {
    font-size: 1.2rem;
}

.sticky-btn span {
    font-size: 1rem;
}

/* Add padding to account for sticky buttons */
body {
    padding-bottom: 60px;
}

/* Responsive Styles for Header, Footer, and Sticky Buttons */
@media screen and (max-width: 1200px) {
    .menu li {
        margin: 0 0.15rem;
    }

    .menu li a {
        padding: 0.75rem 0.75rem;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        flex-direction: column;
        align-items: flex-start;
        background-color: var(--bg-dark);
        overflow: hidden;
        transition: height 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }

    .menu.active {
        height: auto;
        padding: 1rem 0;
        overflow-y: auto;
        max-height: calc(100vh - 80px);
    }

    .menu li {
        width: 100%;
        margin: 0;
    }

    .menu li a {
        padding: 1rem 2rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .menu .menu-button {
        margin: 1rem 2rem;
    }

    .menu .menu-button a {
        width: auto;
        display: inline-block;
    }

    .footer-content {
        gap: 3rem;
    }

    .footer-branding {
        flex: 100%;
    }

    .footer-links {
        flex: 100%;
        gap: 2rem;
    }

    .sticky-btn span {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 767px) {
    .site-logo {
        font-size: 1.8rem;
    }

    .site-tagline {
        font-size: 1rem;
    }

    .header-wrapper {
        height: 70px;
    }

    body {
        padding-top: 70px;
    }

    .menu {
        top: 70px;
        max-height: calc(100vh - 70px);
    }

    .footer-column {
        flex: 100%;
        min-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .sticky-btn {
        padding: 0.75rem 0.5rem;
    }

    .sticky-btn i {
        font-size: 1.1rem;
    }

    .sticky-btn span {
        font-size: 0.8rem;
    }

    body {
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 480px) {
    .site-logo {
        font-size: 1.5rem;
    }

    .site-tagline {
        font-size: 0.9rem;
    }

    .header-wrapper {
        height: 60px;
        padding: 0.75rem 0;
    }

    body {
        padding-top: 60px;
    }

    .menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }

    .menu-toggle {
        font-size: 1.2rem;
    }

    .footer-column h3 {
        font-size: 1.1rem;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* Base Theme Styles */
:root {
    /* Color Palette - Dark Theme */
    --primary-color: #7e22ce;
    /* Purple as primary color */
    --primary-hover: #9333ea;
    /* Lighter purple for hover states */
    --secondary-color: #f59e0b;
    /* Gold/Yellow as secondary color */
    --secondary-hover: #fbbf24;
    /* Lighter gold for hover states */
    --bg-dark: #0f172a;
    /* Dark blue background */
    --bg-card: #1e293b;
    /* Slightly lighter blue for cards/sections */
    --text-light: #f1f5f9;
    /* Light grey text color */
    --text-lighter: #ffffff;
    /* White text for emphasis */
    --text-muted: #94a3b8;
    /* Muted text color */
    --border-color: #334155;
    /* Border color */
    --success-color: #10b981;
    /* Green for success messages */
    --error-color: #ef4444;
    /* Red for errors */
    --gradient-bg: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    /* Background gradient */
}

/* Base Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--bg-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-lighter);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-hover);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-right: 1rem;
    gap: 0.5rem;
}

.btn:last-child {
    margin-right: 0;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--text-lighter);
}

.primary-btn:hover {
    background-color: var(--primary-hover);
    color: var(--text-lighter);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(126, 34, 206, 0.3);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--text-lighter);
}

.secondary-btn:hover {
    background-color: var(--secondary-hover);
    color: var(--text-lighter);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

/* Hero Section Styles */
.hero-section {
    background: var(--gradient-bg);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTAgMGg0MHY0MEgwVjB6TTIwIDIwaDIwdjIwSDIwVjIweiIvPjwvZz48L2c+PC9zdmc+');
    opacity: 0.5;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    margin-left: 3rem;
    position: relative;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(126, 34, 206, 0.5) 0%, rgba(245, 158, 11, 0.3) 100%);
    z-index: 1;
    opacity: 0.6;
}

.hero-image:hover img {
    transform: scale(1.03);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .hero-section .container {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 3rem;
    }

    .hero-image {
        margin-left: 0;
        max-width: 80%;
    }

    .hero-buttons {
        justify-content: center;
    }

    h1 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 767px) {
    .hero-section {
        padding: 4rem 0;
    }

    h1 {
        font-size: 1.8rem;
    }

    .hero-image {
        max-width: 100%;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding: 3rem 0;
    }

    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.75rem;
    }
}

/* Features Section Styles */
.features-section {
    background-color: var(--bg-dark);
    padding: 5rem 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(126, 34, 206, 0.08) 0%, transparent 40%), radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--text-lighter);
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.features-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.features-text {
    flex: 1;
}

.features-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.features-text p strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.features-image {
    flex: 1;
    position: relative;
}

.features-image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.features-image::before {
    content: '';
    position: absolute;
    inset: -20px 20px -10px -10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    z-index: 0;
    opacity: 0.5;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.features-image:hover img {
    transform: translateY(-10px);
}

.features-image:hover::before {
    transform: rotate(-1deg) translateY(-5px);
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(126, 34, 206, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-lighter);
    font-size: 1.8rem;
    box-shadow: 0 10px 15px rgba(126, 34, 206, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-lighter);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

.feature-card p strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.cta-container {
    text-align: center;
    background-color: rgba(30, 41, 59, 0.5);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
}

.cta-container p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.cta-container p:last-of-type {
    margin-bottom: 2rem;
}

.cta-container .btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Responsive Styles for Features Section */
@media screen and (max-width: 1200px) {
    .features-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 991px) {
    .features-content {
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .features-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .features-section {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .features-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .cta-container {
        padding: 2rem 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .features-section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header h2:after {
        width: 60px;
    }

    .features-image::before {
        inset: -10px 10px -5px -5px;
    }

    .cta-container .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* VIP Services Section Styles */
.vip-services-section {
    background-color: var(--bg-card);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.vip-services-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.vip-services-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.vip-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.vip-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.vip-intro p:last-child {
    margin-bottom: 0;
}

.vip-intro p strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.vip-benefits {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.benefit-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.benefit-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.vip-badge {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e5b109 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
    z-index: 2;
    animation: pulse 2s infinite;
}

.vip-badge span {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--bg-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 25px rgba(245, 158, 11, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
    }
}

.benefits-list {
    flex: 1;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    background-color: rgba(15, 23, 42, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.benefits-list i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-right: 1.5rem;
    padding-top: 0.25rem;
}

.benefits-list h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.benefits-list p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.vip-joining {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
}

.join-info {
    flex: 2;
}

.join-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.join-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.join-info p:last-child {
    margin-bottom: 0;
}

.join-info p strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.join-action {
    flex: 1;
}

.action-card {
    background: linear-gradient(135deg, rgba(126, 34, 206, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.action-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.action-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.action-card p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.action-card .btn {
    width: 100%;
}

/* Fix for Font Awesome "calendar-star" icon which might not exist in standard library */
.fa-calendar-star:before {
    content: "\f133";
    /* Using calendar icon as fallback */
}

/* Responsive Styles for VIP Services Section */
@media screen and (max-width: 1200px) {
    .vip-benefits {
        gap: 3rem;
    }

    .vip-joining {
        gap: 2.5rem;
    }
}

@media screen and (max-width: 991px) {
    .vip-benefits {
        flex-direction: column;
    }

    .benefit-image {
        max-width: 100%;
        width: 100%;
        order: -1;
        margin-bottom: 1rem;
    }

    .vip-joining {
        flex-direction: column;
    }

    .join-action {
        width: 100%;
    }

    .action-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 767px) {
    .vip-services-section {
        padding: 4rem 0;
    }

    .vip-intro p {
        font-size: 1rem;
    }

    .benefits-list li {
        padding: 1.25rem;
    }

    .benefits-list i {
        font-size: 1.5rem;
        margin-right: 1rem;
    }

    .benefits-list h3 {
        font-size: 1.2rem;
    }

    .join-info h3 {
        font-size: 1.5rem;
    }

    .action-card {
        padding: 2rem;
    }

    .action-card i {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .vip-services-section {
        padding: 3rem 0;
    }

    .vip-badge {
        width: 60px;
        height: 60px;
        top: -15px;
        right: -15px;
    }

    .vip-badge span {
        font-size: 1.2rem;
    }

    .benefits-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .benefits-list i {
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .join-info h3 {
        font-size: 1.3rem;
    }

    .action-card {
        padding: 1.5rem;
    }

    .action-card h4 {
        font-size: 1.3rem;
    }
}

/* Access Section Styles */
.access-section {
    background-color: var(--bg-dark);
    padding: 5rem 0;
    position: relative;
}

.access-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiM3ZTIyY2UiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTAgMGg0MHY0MEgwVjB6TTIwIDIwaDIwdjIwSDIwVjIweiIvPjwvZz48L2c+PC9zdmc+');
    opacity: 0.7;
    pointer-events: none;
}

.access-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.access-image {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.access-image img {
    width: 100%;
    transition: transform 0.5s ease;
    border-radius: 16px;
}

.access-image:hover img {
    transform: scale(1.05);
}

.access-devices {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 2rem 1rem 1rem;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.access-devices i {
    font-size: 1.8rem;
    color: var(--text-lighter);
    background: rgba(126, 34, 206, 0.3);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.access-devices i:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.access-text {
    flex: 1;
}

.access-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.access-text p:last-child {
    margin-bottom: 0;
}

.access-text p strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.access-text a {
    color: var(--primary-color);
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: underline;
    text-decoration-color: rgba(126, 34, 206, 0.3);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.access-text a:hover {
    color: var(--primary-hover);
    text-decoration-color: var(--primary-hover);
}

.access-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(126, 34, 206, 0.7) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px rgba(126, 34, 206, 0.2);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--text-lighter);
}

.feature-details {
    flex-grow: 1;
}

.feature-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-lighter);
}

.feature-details p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.feature-details p strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.access-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.access-cta .btn {
    margin: 0 0.75rem;
}

/* Responsive Styles for Access Section */
@media screen and (max-width: 1200px) {
    .access-features {
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 991px) {
    .access-content {
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .access-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .access-features {
        grid-template-columns: 1fr;
    }

    .feature-item:last-child {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 767px) {
    .access-section {
        padding: 4rem 0;
    }

    .access-devices i {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.3rem;
    }

    .feature-details h3 {
        font-size: 1.2rem;
    }

    .access-cta .btn {
        display: block;
        width: 80%;
        margin: 0 auto 1rem;
    }

    .access-cta .btn:last-child {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 480px) {
    .access-section {
        padding: 3rem 0;
    }

    .feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
    }

    .access-cta .btn {
        width: 100%;
    }

    .access-devices {
        gap: 1rem;
    }

    .access-devices i {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Platform Section Styles */
.platform-section {
    background-color: var(--bg-card);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.platform-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 1;
}

.platform-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 1;
}

.platform-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.platform-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.platform-intro p strong,
.platform-outro p strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.platform-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.platform-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.7) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-icon {
    margin-bottom: 1.5rem;
    width: 70px;
    height: 70px;
    background-color: rgba(126, 34, 206, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-icon {
    background-color: var(--primary-color);
    color: var(--text-lighter);
    transform: scale(1.1);
}

.platform-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-lighter);
}

.platform-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

.platform-card p strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.platform-features {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    background-color: rgba(15, 23, 42, 0.5);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.features-list {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.features-list i {
    flex-shrink: 0;
    color: var(--success-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.features-list span {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.features-list span strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.platform-image {
    flex: 1;
    position: relative;
}

.platform-image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.platform-image::before {
    content: '';
    position: absolute;
    inset: -15px 15px -5px -5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    z-index: 0;
    opacity: 0.3;
    transform: rotate(2deg);
}

.platform-outro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.platform-outro p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.platform-cta {
    margin-top: 2.5rem;
}

.platform-cta .btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Responsive Styles for Platform Section */
@media screen and (max-width: 1200px) {
    .platform-showcase {
        gap: 1.5rem;
    }

    .platform-card {
        padding: 2rem;
    }
}

@media screen and (max-width: 991px) {
    .platform-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-features {
        flex-direction: column;
        padding: 2.5rem;
    }

    .platform-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .platform-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 767px) {
    .platform-section {
        padding: 4rem 0;
    }

    .platform-showcase {
        grid-template-columns: 1fr;
    }

    .platform-card {
        padding: 2rem;
    }

    .platform-card h3 {
        font-size: 1.4rem;
    }

    .platform-features {
        padding: 2rem;
        gap: 2rem;
    }

    .features-list li {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .features-list i {
        font-size: 1.3rem;
    }

    .features-list span {
        font-size: 1rem;
    }

    .platform-intro p,
    .platform-outro p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .platform-section {
        padding: 3rem 0;
    }

    .platform-card {
        padding: 1.5rem;
    }

    .platform-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }

    .platform-card h3 {
        font-size: 1.25rem;
    }

    .platform-features {
        padding: 1.5rem;
    }

    .platform-cta .btn {
        width: 100%;
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

/* Reviews Section Styles */
.reviews-section {
    background-color: var(--bg-dark);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSI+PGcgZmlsbD0iI2Y1OWUwYiIgZmlsbC1vcGFjaXR5PSIwLjAzIj48cGF0aCBkPSJNMTAgMTBhMiAyIDAgMSAxIDAtNCAgMiAyIDAgMCAxIDAgNCIvPjwvZz48L2c+PC9zdmc+');
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.reviews-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.reviews-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.reviews-intro p strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.reviews-content {
    width: 100%;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 6rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(126, 34, 206, 0.1);
    z-index: 0;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.8rem;
    color: var(--text-lighter);
}

.user-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: var(--secondary-color);
}

.review-body {
    position: relative;
    z-index: 1;
}

.review-body p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.review-body p strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.reviews-highlights {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlights-image {
    flex: 1;
    position: relative;
}

.highlights-image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.highlights-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
    pointer-events: none;
}

.highlights-list {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.highlights-list li:last-child {
    margin-bottom: 0;
}

.highlights-list i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.highlights-list span {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
}

.reviews-conclusion {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.reviews-conclusion p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.reviews-conclusion p strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.cta-container {
    margin-top: 2.5rem;
}

.cta-container .btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Responsive Styles for Reviews Section */
@media screen and (max-width: 1200px) {
    .reviews-carousel {
        gap: 1.5rem;
    }

    .review-card {
        padding: 2rem;
    }
}

@media screen and (max-width: 991px) {
    .reviews-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .review-card:last-child {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
    }

    .reviews-highlights {
        flex-direction: column;
        padding: 2.5rem;
    }

    .highlights-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 2rem;
    }
}

@media screen and (max-width: 767px) {
    .reviews-section {
        padding: 4rem 0;
    }

    .reviews-carousel {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 1.75rem;
    }

    .review-card:last-child {
        grid-column: span 1;
    }

    .avatar {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .user-info h4 {
        font-size: 1.1rem;
    }

    .reviews-highlights {
        padding: 2rem;
    }

    .highlights-list li {
        margin-bottom: 1.25rem;
    }

    .highlights-list i {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .highlights-list span {
        font-size: 1rem;
    }

    .reviews-intro p,
    .reviews-conclusion p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .reviews-section {
        padding: 3rem 0;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-card::before {
        font-size: 4rem;
        top: 10px;
        right: 10px;
    }

    .avatar {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .reviews-highlights {
        padding: 1.5rem;
    }

    .cta-container .btn {
        width: 100%;
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}