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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: white;
}

.logo-text {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.8rem;
    color: white;
}

.logo-highlight {
    color: var(--primary-color);
}

.main-nav {
    display: flex;
}

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

.nav-link {
    display: block;
    padding: 8px 15px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after {
    width: 80%;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.header-btn {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.login-btn:hover {
    background-color: rgba(255, 94, 20, 0.1);
    transform: translateY(-2px);
    color: var(--primary-color);
}

.register-btn {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(255, 94, 20, 0.2);
}

.register-btn:hover {
    background-color: #ff7a3e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 94, 20, 0.3);
    color: white;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-icon {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
}

.hamburger-icon span {
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger-icon span:nth-child(1) {
    top: 0;
}

.hamburger-icon span:nth-child(2) {
    top: 8px;
}

.hamburger-icon span:nth-child(3) {
    top: 16px;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--background-darker);
    z-index: 999;
    padding-top: 80px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    display: none;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    font-size: 1.1rem;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background-color: rgba(255, 94, 20, 0.1);
    color: var(--primary-color);
    padding-left: 25px;
}

.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.mobile-btn {
    padding: 12px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: block;
}

/* Footer Styles */
.site-footer {
    background-color: var(--background-darker);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(76, 0, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    flex: 1;
    max-width: 300px;
}

.footer-slogan {
    color: var(--text-color-muted);
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links-column {
    min-width: 160px;
}

.footer-links-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 1.5px;
}

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

.footer-links-column ul li {
    margin-bottom: 12px;
}

.footer-links-column ul li a {
    color: var(--text-color-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-links-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    z-index: 1;
}

.copyright {
    color: var(--text-color-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.disclaimer {
    color: var(--text-color-muted);
    font-size: 0.8rem;
    opacity: 0.7;
}

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

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 5px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.sticky-btn.login-btn {
    color: var(--text-color);
}

.sticky-btn.login-btn:hover {
    color: var(--primary-color);
}

.sticky-btn.register-btn {
    color: var(--accent-color);
}

.sticky-btn.register-btn:hover {
    color: white;
    background-color: rgba(255, 193, 7, 0.2);
}

.sticky-btn.bonus-btn {
    color: var(--primary-color);
}

.sticky-btn.bonus-btn:hover {
    color: white;
    background-color: rgba(255, 94, 20, 0.2);
}

/* Additional Responsive Adjustments */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-logo {
        text-align: center;
        max-width: 100%;
    }

    .footer-links {
        justify-content: center;
    }

    /* Fixed header padding for mobile */
    body {
        padding-top: 70px;
    }

    /* Adjust first section padding due to fixed header */
    .hero-section {
        padding-top: 30px;
    }
}

@media (max-width: 768px) {
    .header-buttons {
        display: none;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links-column {
        text-align: center;
        width: 100%;
    }

    .footer-links-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-column ul li a:hover {
        transform: none;
    }

    /* Fixed header padding adjustment */
    body {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }

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

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

/* Base Styles - Global CSS */
:root {
    /* Color Palette */
    --primary-color: #ff5e14;
    --secondary-color: #4c00ff;
    --accent-color: #ffc107;
    --text-color: #e0e0e0;
    --text-color-muted: #a0a0a0;
    --background-dark: #0d1117;
    --background-darker: #090c10;
    --background-card: #161b22;
    --background-card-hover: #1f2430;
    --border-color: #30363d;
    /* Typography */
    --heading-font: 'Prompt', sans-serif;
    --body-font: 'Sarabun', sans-serif;
    /* Layout */
    --content-width: 1280px;
    --section-padding: 80px 20px;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

/* Layout */
.container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-padding);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 15px;
    margin-bottom: 10px;
    border: none;
    outline: none;
}

.cta-button i {
    margin-left: 8px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color), #ff8f00);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 94, 20, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #ff8f00, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 94, 20, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--secondary-color), #7300ff);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 0, 255, 0.3);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #7300ff, var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(76, 0, 255, 0.4);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, var(--background-darker), var(--background-dark));
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/ko888 (5).webp') center center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-color-muted);
    margin-bottom: 30px;
}

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

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-color);
}

.hero-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #ff0000, #ff6600);
    color: white;
    font-family: var(--heading-font);
    font-weight: 700;
    padding: 15px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: rotate(12deg);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    animation: pulse 2s infinite;
    line-height: 1.2;
}

.badge-highlight {
    font-size: 1.5rem;
    color: #ffff00;
}

@keyframes pulse {
    0% {
        transform: scale(1) rotate(12deg);
    }

    50% {
        transform: scale(1.05) rotate(12deg);
    }

    100% {
        transform: scale(1) rotate(12deg);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-section .container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        width: 80%;
    }

    .hero-badge {
        width: 100px;
        height: 100px;
        font-size: 0.9rem;
        right: -10px;
        top: -10px;
    }

    .badge-highlight {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-image {
        width: 100%;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px 15px;
    }

    h1 {
        font-size: 1.6rem;
    }

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

    .hero-badge {
        width: 80px;
        height: 80px;
        font-size: 0.7rem;
        padding: 10px;
    }

    .badge-highlight {
        font-size: 1.1rem;
    }
}

/* Section 2 - Intro Section */
.intro-section {
    background-color: var(--background-darker);
    position: relative;
    overflow: hidden;
}

.intro-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 94, 20, 0.1), rgba(76, 0, 255, 0.1));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

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

.intro-content {
    position: relative;
    z-index: 1;
}

.intro-text {
    margin-bottom: 40px;
    padding: 25px;
    background-color: rgba(22, 27, 34, 0.7);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.intro-text p {
    margin-bottom: 15px;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

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

.intro-text a {
    color: var(--primary-color);
    font-weight: 700;
    padding: 0 2px;
    border-bottom: 2px dashed var(--primary-color);
    transition: all 0.3s ease;
}

.intro-text a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    background-color: rgba(255, 193, 7, 0.1);
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background-color: var(--background-card);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: var(--background-card-hover);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(76, 0, 255, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-icon i {
    color: white;
    font-size: 28px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-color-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.cta-container {
    background: linear-gradient(to right, rgba(255, 94, 20, 0.1), rgba(76, 0, 255, 0.1));
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-color);
}

.cta-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

    .intro-text {
        padding: 20px;
    }

    .feature-card {
        padding: 20px;
    }

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

    .feature-icon i {
        font-size: 24px;
    }

    .cta-container {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.4rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .intro-text {
        padding: 15px;
    }
}

/* Section 3 - Promotion Section */
.promotion-section {
    background-color: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.promotion-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 94, 20, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.promotion-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.promotion-image {
    flex: 1;
    position: relative;
}

.promo-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.promotion-image:hover .promo-img {
    transform: scale(1.02);
}

.promo-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    background: linear-gradient(135deg, var(--secondary-color), #7300ff);
    color: white;
    font-family: var(--heading-font);
    font-weight: 700;
    padding: 15px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: rotate(-12deg);
    box-shadow: 0 5px 15px rgba(76, 0, 255, 0.3);
    line-height: 1.2;
    z-index: 2;
}

.promo-badge .badge-highlight {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.promotion-details {
    flex: 1;
    position: relative;
}

.promotion-details p {
    background-color: rgba(22, 27, 34, 0.5);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    border-left: 3px solid var(--secondary-color);
}

.promotion-details p:last-child {
    margin-bottom: 0;
}

.promotion-details strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Promotion Cards */
.promotion-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.promo-card {
    background-color: var(--background-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.promo-card:hover {
    transform: translateY(-5px);
    background-color: var(--background-card-hover);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(76, 0, 255, 0.15);
}

.promo-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(76, 0, 255, 0.2);
}

.promo-card:hover .promo-card-icon {
    transform: rotate(10deg);
}

.promo-card-icon i {
    color: white;
    font-size: 32px;
}

.promo-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #fff;
}

.promo-card p {
    color: var(--text-color-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.promo-card strong {
    color: var(--accent-color);
    font-weight: 700;
}

.promo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: rgba(76, 0, 255, 0.1);
    color: var(--accent-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-family: var(--heading-font);
    transition: all 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.promo-button i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.promo-button:hover {
    background-color: rgba(76, 0, 255, 0.2);
    color: #fff;
}

.promo-button:hover i {
    transform: translateX(5px);
}

/* Promotion Footer */
.promotion-footer {
    text-align: center;
    padding: 30px;
    background: linear-gradient(to right, rgba(255, 94, 20, 0.1), rgba(76, 0, 255, 0.1));
    border-radius: var(--border-radius);
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-color);
}

.promotion-footer p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.promotion-footer strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Media Queries for Promotion Section */
@media (max-width: 992px) {
    .promotion-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .promotion-image {
        width: 80%;
        margin: 0 auto;
    }

    .promo-badge {
        width: 80px;
        height: 80px;
        font-size: 0.9rem;
        padding: 10px;
    }

    .promo-badge .badge-highlight {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .promotion-cards {
        grid-template-columns: 1fr;
    }

    .promotion-image {
        width: 100%;
    }

    .promo-card {
        padding: 25px;
    }

    .promo-card-icon {
        width: 70px;
        height: 70px;
    }

    .promo-card-icon i {
        font-size: 28px;
    }

    .promotion-footer p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .promotion-details p {
        padding: 12px;
    }

    .promo-card h3 {
        font-size: 1.2rem;
    }

    .promo-badge {
        width: 70px;
        height: 70px;
        font-size: 0.8rem;
    }

    .promo-badge .badge-highlight {
        font-size: 1.2rem;
    }

    .promotion-footer {
        padding: 20px;
    }
}

/* Section 4 - Security Section */
.security-section {
    background-color: var(--background-darker);
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(76, 0, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.security-content {
    position: relative;
    z-index: 1;
}

.security-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.security-card {
    background-color: var(--background-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.security-card:hover {
    transform: translateY(-5px);
    background-color: var(--background-card-hover);
    border-color: var(--accent-color);
}

.security-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 94, 20, 0.2);
}

.security-card:hover .security-icon {
    transform: rotate(10deg);
}

.security-icon i {
    color: white;
    font-size: 28px;
}

.security-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #fff;
}

.security-card p {
    color: var(--text-color-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.security-card p:last-child {
    margin-bottom: 0;
}

.security-card strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Security Features */
.security-features {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.security-image {
    flex: 1;
    position: relative;
    padding: 10px;
    background: linear-gradient(to bottom right, rgba(76, 0, 255, 0.1), rgba(255, 94, 20, 0.1));
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.security-img {
    width: 100%;
    height: auto;
    border-radius: calc(var(--border-radius) - 5px);
    transition: transform 0.3s ease;
}

.security-image:hover .security-img {
    transform: scale(1.02);
}

.security-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-family: var(--heading-font);
    font-weight: 700;
    padding: 15px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: rotate(12deg);
    box-shadow: 0 5px 15px rgba(255, 94, 20, 0.3);
    line-height: 1.2;
    z-index: 2;
}

.security-badge .badge-highlight {
    font-size: 1.8rem;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.security-list {
    flex: 1;
}

.security-list h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.security-list h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background-color: rgba(22, 27, 34, 0.5);
    padding: 20px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border-left: 3px solid var(--border-color);
}

.features-list li:hover {
    background-color: rgba(22, 27, 34, 0.7);
    border-left-color: var(--accent-color);
    transform: translateX(5px);
}

.features-list li i {
    color: var(--accent-color);
    font-size: 24px;
    margin-right: 15px;
    margin-top: 3px;
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    color: var(--accent-color);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

/* Security Note */
.security-note {
    background-color: rgba(22, 27, 34, 0.7);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.security-note p {
    margin-bottom: 15px;
}

.security-note p:last-child {
    margin-bottom: 0;
}

.security-note strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Security CTA */
.security-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(to right, rgba(255, 94, 20, 0.1), rgba(76, 0, 255, 0.1));
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.security-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.security-cta strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Media Queries for Security Section */
@media (max-width: 992px) {
    .security-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .security-features {
        flex-direction: column;
        gap: 30px;
    }

    .security-badge {
        width: 80px;
        height: 80px;
        font-size: 0.9rem;
    }

    .security-badge .badge-highlight {
        font-size: 1.4rem;
    }

    .features-list li {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .security-icon {
        width: 60px;
        height: 60px;
    }

    .security-icon i {
        font-size: 24px;
    }

    .security-list h3 {
        font-size: 1.3rem;
    }

    .features-list li i {
        font-size: 20px;
    }

    .security-note {
        padding: 20px;
    }

    .security-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .security-card {
        padding: 20px;
    }

    .features-list li {
        padding: 12px;
    }

    .security-badge {
        width: 70px;
        height: 70px;
        font-size: 0.8rem;
        right: -10px;
        bottom: -10px;
    }

    .security-badge .badge-highlight {
        font-size: 1.2rem;
    }

    .security-cta {
        padding: 20px;
    }
}

/* Section 5 - Tips Section */
.tips-section {
    background-color: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.tips-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.tips-content {
    position: relative;
    z-index: 1;
}

.tips-intro {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.tips-intro-text {
    flex: 1.5;
}

.tips-intro-text p {
    margin-bottom: 20px;
    background-color: rgba(22, 27, 34, 0.5);
    padding: 15px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-color);
}

.tips-intro-text p:last-child {
    margin-bottom: 0;
}

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

.tips-image {
    flex: 1;
    position: relative;
}

.tips-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.tips-image:hover .tips-img {
    transform: scale(1.02);
}

/* Tips Management */
.tips-management {
    background: linear-gradient(135deg, rgba(76, 0, 255, 0.1), rgba(255, 94, 20, 0.1));
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.tips-management h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px;
}

.tips-management h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

/* Strategy List */
.strategy-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.strategy-list li {
    background-color: var(--background-card);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.strategy-list li:hover {
    transform: translateY(-5px);
    background-color: var(--background-card-hover);
    border-color: var(--accent-color);
}

.strategy-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
}

.strategy-list li:hover .strategy-icon {
    transform: rotate(10deg);
}

.strategy-icon i {
    color: white;
    font-size: 28px;
}

.strategy-content h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #fff;
}

.strategy-content p {
    color: var(--text-color-muted);
    font-size: 0.95rem;
}

/* Tips Disclaimer */
.tips-disclaimer {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(255, 193, 7, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.tips-disclaimer-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 193, 7, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tips-disclaimer-icon i {
    color: var(--accent-color);
    font-size: 24px;
}

.tips-disclaimer-text {
    flex: 1;
}

.tips-disclaimer-text p {
    margin: 0;
    font-size: 0.95rem;
    font-style: italic;
}

/* Tips Conclusion */
.tips-conclusion {
    background-color: var(--background-card);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.tips-conclusion p {
    margin-bottom: 15px;
}

.tips-conclusion p:last-child {
    margin-bottom: 0;
}

.tips-conclusion strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Tips CTA */
.tips-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Media Queries for Tips Section */
@media (max-width: 992px) {
    .tips-intro {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .tips-image {
        width: 80%;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .strategy-list {
        grid-template-columns: 1fr;
    }

    .tips-image {
        width: 100%;
    }

    .tips-disclaimer {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .tips-management {
        padding: 20px;
    }

    .tips-conclusion {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .tips-intro-text p,
    .tips-management p,
    .strategy-content p,
    .tips-conclusion p {
        font-size: 0.9rem;
    }

    .tips-management h3 {
        font-size: 1.2rem;
    }

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

    .strategy-icon i {
        font-size: 24px;
    }

    .tips-disclaimer-text p {
        font-size: 0.85rem;
    }
}

/* Section 6 - Access Section */
.access-section {
    background-color: var(--background-darker);
    position: relative;
    overflow: hidden;
}

.access-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 94, 20, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.access-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

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

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

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

.access-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 17, 23, 0.8), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.access-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-family: var(--heading-font);
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(255, 94, 20, 0.3);
    transform: translateY(20px);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.access-image:hover .access-badge {
    transform: translateY(0);
    opacity: 1;
}

.access-badge i {
    font-size: 18px;
}

.access-description {
    flex: 1;
    background-color: rgba(22, 27, 34, 0.6);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.access-description p {
    margin: 0;
}

.access-description strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Steps Container */
.steps-container {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.steps-container h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.steps-container h3::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;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.step-card {
    background-color: var(--background-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    background-color: var(--background-card-hover);
    border-color: var(--primary-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 94, 20, 0.2);
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1) rotate(10deg);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--text-color-muted);
    font-size: 0.95rem;
    margin: 0;
}

.step-content strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Access Additional Info */
.access-additional-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.info-card {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.7), rgba(22, 27, 34, 0.4));
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    overflow: hidden;
    word-break: break-word;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(76, 0, 255, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: rotate(15deg);
}

.info-icon i {
    color: white;
    font-size: 24px;
}

.info-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.info-card p {
    color: var(--text-color-muted);
    font-size: 0.95rem;
    margin: 0;
}

.info-card strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Access Support */
.access-support {
    background-color: rgba(22, 27, 34, 0.6);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 40px;
    border-left: 4px solid var(--secondary-color);
    position: relative;
    z-index: 1;
}

.access-support p {
    margin-bottom: 15px;
}

.access-support p:last-child {
    margin-bottom: 0;
}

.access-support strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Access CTA */
.access-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Media Queries for Access Section */
@media (max-width: 992px) {
    .access-content {
        flex-direction: column;
    }

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

    .access-additional-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .access-additional-info {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .step-card {
        padding: 20px;
    }
    
    .access-description {
        padding: 20px;
    }

    .info-card {
        padding: 20px 15px;
        width: 100%;
    }
    
    .access-support {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .info-icon i {
        font-size: 20px;
    }
    
    .access-badge {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .info-card {
        padding: 15px 12px;
        width: 100%;
    }
    
    .info-card h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .info-card p {
        font-size: 0.85rem;
    }
}