/* Header Styles */
.site-header {
    background-color: rgba(10, 10, 10, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-navigation {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 1rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-header-login,
.btn-header-register {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 4px;
}

.btn-header-login {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--text-primary);
}

.btn-header-login:hover {
    background: rgba(98, 0, 234, 0.1);
    color: var(--accent-color);
}

.btn-header-register {
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.btn-header-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(to bottom, var(--background-dark), rgba(5, 5, 10, 0.98));
    position: relative;
    z-index: 10;
    padding: 5rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(98, 0, 234, 0.1), transparent 40%),
                radial-gradient(circle at 80% 60%, rgba(0, 191, 165, 0.1), transparent 40%);
    z-index: -1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    margin-bottom: 3.5rem;
    position: relative;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 48px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: translateY(-5px);
}

.footer-tagline {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 340px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(98, 0, 234, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 600;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.9rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-column a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-column a:hover::before {
    width: 100%;
}

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.25);
    padding: 1.8rem 2rem;
    margin-bottom: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(255, 255, 255, 0.1) 20%, 
        rgba(255, 255, 255, 0.1) 80%, 
        transparent);
}

.copyright p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.payment-methods i {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.payment-methods i:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
    opacity: 1;
}

.scroll-top-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(98, 0, 234, 0.4);
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.sticky-btn i {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.sticky-btn span {
    font-size: 0.85rem;
    font-weight: 500;
}

.login-btn {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.7), rgba(20, 20, 20, 0.9));
}

.login-btn:hover {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8), rgba(30, 30, 30, 1));
}

.register-btn {
    background: linear-gradient(145deg, rgba(98, 0, 234, 0.7), rgba(78, 0, 184, 0.9));
}

.register-btn:hover {
    background: linear-gradient(145deg, rgba(118, 20, 254, 0.8), rgba(98, 0, 234, 1));
}

.bonus-btn {
    background: linear-gradient(145deg, rgba(255, 193, 7, 0.7), rgba(235, 173, 0, 0.9));
    color: var(--background-darker);
}

.bonus-btn:hover {
    background: linear-gradient(145deg, rgba(255, 203, 27, 0.8), rgba(255, 193, 7, 1));
}

/* Body Padding for Fixed Header and Sticky Footer */
body {
    padding-top: 70px;
    /* Adjust based on header height */
    padding-bottom: 70px;
    /* Adjust based on sticky buttons height */
}

/* Responsive Styles for Header, Footer and Sticky Buttons */
@media (max-width: 991px) {
    .mobile-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 70px;
        /* Match header height */
        left: 0;
        width: 100%;
        background: var(--background-darker);
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }

    .main-navigation.active {
        height: auto;
    }

    .nav-menu {
        flex-direction: column;
        padding: 1rem 0;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
    }

    .footer-links {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
    
    .footer-column {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    .header-wrapper {
        padding: 0.8rem 0;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .copyright {
        margin-bottom: 1rem;
        order: 2;
    }
    
    .payment-methods {
        order: 1;
        margin-bottom: 1rem;
        justify-content: center;
    }

    .sticky-btn i {
        font-size: 1.1rem;
    }

    .sticky-btn span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .sticky-btn {
        padding: 0.6rem 0;
    }

    .sticky-btn i {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .sticky-btn span {
        font-size: 0.7rem;
    }

    .site-footer {
        padding-top: 3.5rem;
    }
    
    .footer-logo {
        align-items: center;
        text-align: center;
    }
    
    .footer-tagline {
        text-align: center;
    }
    
    .footer-column h3 {
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-disclaimer {
        padding: 1.5rem 1rem;
    }
    
    .scroll-top-btn {
        right: 15px;
        bottom: 75px;
        width: 38px;
        height: 38px;
    }
}

/* Base Theme CSS */
:root {
    /* Color palette - Dark Theme */
    --primary-color: #6200EA;
    /* Deep Purple */
    --secondary-color: #00BFA5;
    /* Teal */
    --accent-color: #FFC107;
    /* Amber */
    --background-dark: #121212;
    /* Dark background */
    --background-darker: #0A0A0A;
    /* Darker sections */
    --surface-color: #1E1E1E;
    /* Card backgrounds */
    --text-primary: #FFFFFF;
    /* White text */
    --text-secondary: #B0B0B0;
    /* Light gray text */
    --border-color: #2C2C2C;
    /* Subtle borders */
    --hover-overlay: rgba(255, 255, 255, 0.05);
    /* Hover effect */
    --shadow-color: rgba(0, 0, 0, 0.5);
    /* Shadows */
    --gradient-primary: linear-gradient(135deg, #6200EA, #B388FF);
    /* Purple gradient */
    --gradient-secondary: linear-gradient(135deg, #00BFA5, #1DE9B6);
    /* Teal gradient */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    margin-right: 1rem;
    margin-bottom: 1rem;
    border: none;
    cursor: pointer;
    font-family: 'Prompt', sans-serif;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px var(--shadow-color);
    color: var(--text-primary);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px var(--shadow-color);
    color: var(--text-primary);
}

/* Section Common Styles */
section {
    padding: 4rem 0;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    background: var(--background-darker);
    overflow: hidden;
    padding: 6rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(98, 0, 234, 0.2), transparent 60%), radial-gradient(circle at bottom left, rgba(0, 191, 165, 0.15), transparent 60%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hero-content {
    flex: 1 1 600px;
    padding-right: 2rem;
}

.hero-image {
    flex: 1 1 400px;
    position: relative;
}

.hero-img {
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0);
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 2.75rem;
    background: linear-gradient(to right, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(98, 0, 234, 0.3);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
}

/* Media Queries */
@media (max-width: 991px) {
    .hero-section {
        padding: 5rem 0;
    }

    .hero-content,
    .hero-image {
        flex: 1 1 100%;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    section {
        padding: 3rem 0;
    }

    .hero-section {
        padding: 4rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        margin-right: 0;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }
}

/* Experience Section Styles */
.experience-section {
    background-color: var(--surface-color);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(98, 0, 234, 0.15), transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.experience-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 191, 165, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 1rem;
}

.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;
}

.experience-content {
    position: relative;
    z-index: 2;
}

.experience-text {
    margin-bottom: 3rem;
}

.experience-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.experience-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(10, 10, 10, 0.9));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0.7;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: rgba(98, 0, 234, 0.1);
    border-radius: 50%;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.feature-card p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.btn-feature {
    background: rgba(98, 0, 234, 0.2);
    color: var(--accent-color);
    border: 1px solid var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-feature:hover {
    background: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-3px);
}

.experience-cta {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.experience-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.experience-cta p strong {
    color: var(--accent-color);
}

.experience-cta .btn {
    margin: 0 auto;
}

/* Media Queries for Experience Section */
@media (max-width: 991px) {
    .experience-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .experience-features {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .experience-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .experience-cta {
        padding: 1.5rem;
    }
}

/* Bonus Section Styles */
.bonus-section {
    background-color: var(--background-dark);
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.bonus-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.bonus-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.bonus-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bonus-image:hover .bonus-img {
    transform: scale(1.05);
}

.bonus-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: var(--background-darker);
    font-weight: 700;
    padding: 0.5rem 2.5rem;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.bonus-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bonus-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.bonus-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.bonus-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
}

.bonus-list li {
    display: flex;
    margin-bottom: 1.5rem;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.bonus-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.bonus-list i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-right: 1.5rem;
    align-self: center;
}

.bonus-item {
    flex: 1;
}

.bonus-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.bonus-item p {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.bonus-extra {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.extra-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.5));
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.extra-card:hover {
    transform: translateY(-5px);
}

.extra-icon {
    background: rgba(98, 0, 234, 0.15);
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.extra-icon i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.extra-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.extra-text strong {
    color: var(--accent-color);
}

.bonus-conclusion {
    text-align: center;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

.bonus-conclusion p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.bonus-conclusion strong {
    color: var(--accent-color);
}

/* Media Queries for Bonus Section */
@media (max-width: 991px) {
    .bonus-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bonus-extra {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-image {
        max-height: 400px;
    }
}

@media (max-width: 767px) {
    .bonus-extra {
        grid-template-columns: 1fr;
    }

    .bonus-list li {
        padding: 1.2rem;
    }

    .bonus-list i {
        font-size: 1.5rem;
        margin-right: 1rem;
    }

    .extra-card {
        padding: 1.2rem;
    }

    .bonus-conclusion {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .bonus-badge {
        font-size: 0.8rem;
        padding: 0.4rem 2rem;
        right: -25px;
    }

    .bonus-list li {
        flex-direction: column;
    }

    .bonus-list i {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .extra-card {
        flex-direction: column;
    }

    .extra-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Entry Section Styles */
.entry-section {
    background-color: var(--surface-color);
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.entry-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(98, 0, 234, 0.08), transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.entry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    align-items: center;
}

.entry-text {
    order: 1;
}

.entry-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.entry-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.entry-image {
    order: 2;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.entry-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.entry-image:hover img {
    transform: scale(1.05);
}

.entry-device-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.device-desktop,
.device-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-primary);
}

.device-desktop i,
.device-mobile i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.entry-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.detail-card {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.5), rgba(20, 20, 20, 0.8));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.detail-icon {
    background: var(--gradient-primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.detail-icon i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.detail-content h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--text-primary);
}

.detail-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.detail-content strong {
    color: var(--accent-color);
}

.entry-conclusion {
    background: rgba(20, 20, 20, 0.5);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.conclusion-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.conclusion-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.conclusion-text strong {
    color: var(--accent-color);
}

.entry-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.entry-cta .btn {
    margin: 0;
}

/* Media Queries for Entry Section */
@media (max-width: 991px) {
    .entry-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .entry-text {
        order: 2;
    }

    .entry-image {
        order: 1;
    }

    .entry-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .entry-details {
        grid-template-columns: 1fr;
    }

    .detail-card {
        padding: 1.5rem;
    }

    .detail-icon {
        width: 50px;
        height: 50px;
    }

    .detail-icon i {
        font-size: 1.3rem;
    }

    .entry-conclusion {
        padding: 2rem;
    }

    .device-desktop i,
    .device-mobile i {
        font-size: 1.5rem;
    }

    .entry-device-overlay {
        gap: 2rem;
        padding: 1.5rem 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .entry-cta {
        flex-direction: column;
        width: 100%;
    }

    .entry-cta .btn {
        width: 100%;
    }

    .entry-conclusion {
        padding: 1.5rem;
    }
}

/* Why Love Section Styles */
.why-love-section {
    background-color: var(--background-dark);
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.why-love-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 191, 165, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.why-love-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(98, 0, 234, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.why-love-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.why-love-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.why-love-intro strong {
    color: var(--accent-color);
}

.love-features {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.love-feature-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    align-items: center;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.love-feature-card:hover {
    transform: translateY(-5px);
}

.love-feature-card.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.love-feature-card.reverse .feature-image {
    order: 2;
}

.love-feature-card.reverse .feature-content {
    order: 1;
}

.feature-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.05);
}

.feature-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature-badge i {
    font-size: 1.2rem;
    color: var(--background-darker);
}

.feature-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.8rem;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.feature-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.feature-content strong {
    color: var(--accent-color);
}

.payment-system {
    background: linear-gradient(145deg, rgba(35, 35, 35, 0.7), rgba(25, 25, 25, 0.9));
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.payment-icon {
    background: var(--gradient-secondary);
    min-width: 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon i {
    font-size: 2rem;
    color: var(--text-primary);
}

.payment-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.payment-content p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.payment-content strong {
    color: var(--accent-color);
}

.love-conclusion {
    background: rgba(20, 20, 20, 0.5);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.love-conclusion p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.love-conclusion strong {
    color: var(--accent-color);
}

.love-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.love-cta .btn {
    margin: 0;
}

/* Media Queries for Why Love Section */
@media (max-width: 991px) {

    .love-feature-card,
    .love-feature-card.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .love-feature-card.reverse .feature-image,
    .feature-image {
        order: 1;
    }

    .love-feature-card.reverse .feature-content,
    .feature-content {
        order: 2;
    }

    .payment-system {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .payment-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .love-feature-card {
        padding: 1.5rem;
    }

    .feature-badge {
        width: 35px;
        height: 35px;
    }

    .feature-badge i {
        font-size: 1rem;
    }

    .payment-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .payment-icon i {
        font-size: 1.7rem;
    }

    .love-conclusion {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .love-feature-card {
        padding: 1.25rem;
    }

    .feature-content h3 {
        font-size: 1.3rem;
    }

    .payment-system {
        padding: 1.5rem;
    }

    .payment-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .payment-icon i {
        font-size: 1.5rem;
    }

    .love-conclusion {
        padding: 1.5rem;
    }

    .love-cta {
        flex-direction: column;
        width: 100%;
    }

    .love-cta .btn {
        width: 100%;
    }
}

/* Reliability Section Styles */
.reliability-section {
    background-color: var(--surface-color);
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.reliability-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(98, 0, 234, 0.08), transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.reliability-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 191, 165, 0.08), transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.reliability-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.reliability-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.reliability-intro strong {
    color: var(--accent-color);
}

.reliability-intro a {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.reliability-intro a:hover {
    color: var(--accent-color);
}

.reliability-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.reliability-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.reliability-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.reliability-image:hover img {
    transform: scale(1.05);
}

.reliability-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 3rem 1.5rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.reliability-overlay span {
    background: var(--accent-color);
    color: var(--background-darker);
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.reliability-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rel-feature {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.5), rgba(20, 20, 20, 0.8));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rel-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.rel-feature-icon {
    background: var(--gradient-primary);
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.rel-feature-icon i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.rel-feature-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.rel-feature-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.rel-feature-content strong {
    color: var(--accent-color);
}

.financial-system {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(15, 15, 15, 0.9));
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.finance-icon {
    background: var(--gradient-secondary);
    min-width: 90px;
    width: 90px;
    height: 90px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.finance-icon i {
    font-size: 2.5rem;
    color: var(--text-primary);
}

.finance-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.finance-content p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.finance-content strong {
    color: var(--accent-color);
}

.promo-highlight {
    background: linear-gradient(145deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.promo-text {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.promo-text i {
    font-size: 2.5rem;
    color: var(--accent-color);
    min-width: 60px;
}

.promo-text p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.promo-text strong {
    color: var(--accent-color);
}

.reliability-conclusion {
    text-align: center;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.reliability-conclusion p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.reliability-conclusion strong {
    color: var(--accent-color);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    margin: 0;
}

/* Media Queries for Reliability Section */
@media (max-width: 991px) {
    .reliability-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reliability-image {
        max-height: 400px;
    }

    .financial-system {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .promo-text {
        flex-direction: column;
        text-align: center;
    }

    .promo-text i {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    .rel-feature {
        padding: 1.5rem;
    }

    .rel-feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        margin-right: 1rem;
    }

    .rel-feature-icon i {
        font-size: 1.3rem;
    }

    .finance-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .finance-icon i {
        font-size: 2rem;
    }

    .reliability-conclusion {
        padding: 2rem;
    }

    .reliability-overlay {
        padding: 2rem 1rem 1rem;
    }

    .reliability-overlay span {
        font-size: 0.95rem;
        padding: 0.5rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .rel-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .rel-feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .reliability-overlay span {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .reliability-conclusion {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}