/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.logo-highlight {
    color: var(--primary-color);
}

.main-nav {
    margin-left: auto;
    margin-right: 20px;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1002;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Sticky Header on Scroll */
.site-header.scrolled {
    padding: 5px 0;
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Footer Styles */
.site-footer {
    background-color: var(--darker-bg);
    padding: 70px 0 20px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-tagline {
    margin-top: 15px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-links-column {
    min-width: 150px;
}

.footer-links-column h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column li {
    margin-bottom: 10px;
}

.footer-links-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    margin-bottom: 15px;
}

.footer-legal a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.separator {
    margin: 0 10px;
    color: var(--text-secondary);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: var(--darker-bg);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn:last-child {
    border-right: none;
}

.sticky-btn:nth-child(1) {
    background: linear-gradient(135deg, #FF6B00 0%, #FF3366 100%);
}

.sticky-btn:nth-child(2) {
    background: linear-gradient(135deg, #8800FF 0%, #5643CC 100%);
}

.sticky-btn:nth-child(3) {
    background: linear-gradient(135deg, #FFD700 0%, #FF9900 100%);
}

.sticky-btn:hover {
    transform: translateY(-5px);
}

.sticky-btn i {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.sticky-btn span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive Styles for Header and Footer */
@media (max-width: 1150px) {
    body {
        padding-top: 70px;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--darker-bg);
        margin: 0;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 1001;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
    }

    .nav-list li {
        margin: 0 0 20px 0;
    }

    .nav-list a {
        font-size: 1.1rem;
        display: block;
        padding: 10px 0;
    }

    .header-buttons {
        display: none;
    }

    /* Hamburger Animation */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Footer Adjustments */
    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal,
    .copyright {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0 20px;
    }

    .footer-links {
        gap: 30px;
    }

    .footer-links-column {
        min-width: 45%;
    }
}

@media (max-width: 576px) {
    .sticky-btn i {
        font-size: 1.1rem;
    }

    .sticky-btn span {
        font-size: 0.8rem;
    }

    .footer-links-column {
        min-width: 100%;
    }

    .footer-legal {
        display: flex;
        flex-direction: column;
    }

    .separator {
        display: none;
    }

    .footer-legal a {
        margin-bottom: 10px;
    }
}

/* Overlay for Mobile Menu */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Adjust main content to account for header and sticky buttons */
main {
    padding-top: 80px;
    padding-bottom: 70px;
}

/* Base Styles & Theme */
:root {
    /* Dark Theme Colors */
    --primary-color: #FF6B00;
    --secondary-color: #8800FF;
    --dark-bg: #121212;
    --darker-bg: #0A0A0A;
    --lighter-bg: #1E1E1E;
    --text-color: #FFFFFF;
    --text-secondary: #AAAAAA;
    --accent-gold: #FFD700;
    --accent-red: #FF3366;
    --btn-hover: #FF8800;
    --gradient-primary: linear-gradient(135deg, #FF6B00, #FF3366);
    --gradient-secondary: linear-gradient(135deg, #8800FF, #5643CC);
    --container-width: 1280px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-hard: 0 10px 30px rgba(0, 0, 0, 0.7);
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

/* Reset and Base Elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--btn-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--shadow-soft);
    margin-right: 15px;
    margin-bottom: 15px;
}

.btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hard);
    color: white;
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    border: none;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hard);
    color: white;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--darker-bg);
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 107, 0, 0.1) 0%, transparent 60%), radial-gradient(circle at 90% 80%, rgba(136, 0, 255, 0.1) 0%, transparent 60%);
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-hard);
    transition: transform var(--transition-speed) ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.3;
    z-index: 1;
}

.hero-image img {
    border-radius: var(--border-radius);
    position: relative;
    z-index: 0;
    transition: transform 1s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
}

/* Responsiveness */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    .hero-section {
        padding: 80px 0;
    }

    .hero-content,
    .hero-image {
        flex: 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .hero-content {
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero-section {
        padding: 50px 0 40px;
    }

    .container {
        padding: 0 15px;
    }

    .btn {
        width: 100%;
        margin-right: 0;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* Benefits Section Styles */
.benefits-section {
    padding: 90px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, var(--darker-bg) 25%, transparent 25%, transparent 50%, var(--darker-bg) 50%, var(--darker-bg) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    opacity: 0.05;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.benefits-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.benefits-text {
    flex: 1;
    min-width: 300px;
}

.benefits-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: var(--text-color);
}

.benefits-text strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.benefits-cards {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background-color: var(--lighter-bg);
    border-radius: var(--border-radius);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hard);
}

.card-icon {
    margin-bottom: 15px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.benefits-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .benefits-section {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .benefits-content {
        flex-direction: column;
    }

    .benefits-text,
    .benefits-cards {
        flex: 100%;
        max-width: 100%;
    }

    .benefits-cards {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .benefits-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .card {
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .benefits-section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .benefits-cards {
        grid-template-columns: 1fr;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }
}

/* Login Access Section Styles */
.login-access-section {
    padding: 90px 0;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.login-access-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(136, 0, 255, 0.08) 0%, transparent 70%);
    z-index: 1;
    transform: rotate(45deg);
}

.login-access-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    z-index: 1;
    transform: rotate(45deg);
}

.login-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.login-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hard);
    overflow: hidden;
}

.login-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0.3;
    z-index: 1;
}

.login-image img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.login-image:hover img {
    transform: scale(1.05);
}

.login-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(12, 12, 12, 0.8);
    color: var(--accent-gold);
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
    backdrop-filter: blur(3px);
}

.login-badge i {
    margin-right: 8px;
    font-size: 1rem;
}

.login-text {
    flex: 1.5;
    min-width: 300px;
}

.login-text p {
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.login-text strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.access-links {
    background-color: var(--lighter-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 25px 0;
    box-shadow: var(--shadow-soft);
}

.access-link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.access-link:last-child {
    border-bottom: none;
}

.access-link i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 10px;
}

.access-link span {
    font-weight: 600;
    margin-right: 10px;
    color: var(--text-secondary);
}

.access-link strong {
    color: var(--accent-gold);
    font-weight: 700;
    word-break: break-all;
}

.login-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .login-access-section {
        padding: 70px 0;
    }

    .login-content {
        flex-direction: column-reverse;
    }

    .login-image,
    .login-text {
        flex: 100%;
        max-width: 100%;
    }

    .login-image {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .login-access-section {
        padding: 60px 0;
    }

    .access-link {
        flex-direction: column;
        align-items: flex-start;
    }

    .access-link i {
        margin-bottom: 5px;
    }

    .access-link span {
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .login-buttons {
        flex-direction: column;
    }

    .login-buttons .btn {
        width: 100%;
    }

    .login-badge {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* Security Section Styles */
.security-section {
    padding: 90px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(255, 107, 0, 0.03) 25%, transparent 25%), linear-gradient(225deg, rgba(136, 0, 255, 0.03) 25%, transparent 25%), linear-gradient(315deg, rgba(255, 107, 0, 0.03) 25%, transparent 25%), linear-gradient(45deg, rgba(136, 0, 255, 0.03) 25%, transparent 25%);
    background-size: 60px 60px;
    z-index: 1;
}

.security-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.security-steps {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.security-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.step-item {
    display: flex;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    flex-shrink: 0;
}

.step-content {
    padding-top: 5px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.step-content p {
    color: var(--text-secondary);
}

.security-info {
    flex: 1.5;
    min-width: 300px;
}

.security-info>p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.feature-card {
    display: flex;
    background-color: var(--lighter-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hard);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.feature-content p:last-child {
    margin-bottom: 0;
}

.feature-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.feature-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-content li:last-child {
    margin-bottom: 0;
}

.feature-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
}

.security-cta {
    text-align: center;
    margin-top: 30px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .security-section {
        padding: 70px 0;
    }

    .security-content {
        flex-direction: column;
    }

    .security-steps,
    .security-info {
        flex: 100%;
        max-width: 100%;
    }

    .security-steps {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .security-section {
        padding: 60px 0;
    }

    .feature-card {
        flex-direction: column;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .security-section {
        padding: 50px 0;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .security-steps::before {
        left: 19px;
    }

    .feature-content h4 {
        font-size: 1.1rem;
    }
}

/* Platform Choice Section Styles */
.platform-choice-section {
    padding: 90px 0;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.platform-choice-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.platform-choice-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(136, 0, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.platform-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.platform-text {
    flex: 1;
    min-width: 300px;
}

.platform-text p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.platform-text p:last-child {
    margin-bottom: 0;
}

.platform-text strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.platform-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hard);
}

.platform-image img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.platform-image:hover img {
    transform: scale(1.05);
}

.platform-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
    z-index: 2;
}

.platform-overlay span {
    display: block;
    color: white;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.factor-card {
    background-color: var(--lighter-bg);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.factor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.factor-card:nth-child(even)::before {
    background: var(--gradient-secondary);
}

.factor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hard);
}

.factor-icon {
    width: 70px;
    height: 70px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform var(--transition-speed) ease;
}

.factor-card:hover .factor-icon {
    transform: scale(1.1);
}

.factor-icon i {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.factor-card:nth-child(even) .factor-icon i {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.factor-card h3 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.factor-card p {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.platform-info {
    position: relative;
    z-index: 2;
    background-color: var(--lighter-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.platform-info p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-color);
}

.platform-info p:last-of-type {
    margin-bottom: 30px;
}

.platform-cta {
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .platform-choice-section {
        padding: 70px 0;
    }

    .platform-content {
        flex-direction: column-reverse;
    }

    .platform-text,
    .platform-image {
        flex: 100%;
        max-width: 100%;
    }

    .platform-image {
        margin: 0 auto;
    }

    .factors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .platform-choice-section {
        padding: 60px 0;
    }

    .factors-grid {
        grid-template-columns: 1fr;
    }

    .platform-overlay span {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .platform-choice-section {
        padding: 50px 0;
    }

    .platform-info {
        padding: 25px 20px;
    }

    .factor-card {
        padding: 25px 20px;
    }

    .factor-icon {
        width: 60px;
        height: 60px;
    }

    .factor-icon i {
        font-size: 1.5rem;
    }
}

/* Promotions Section Styles */
.promotions-section {
    padding: 90px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='%23FF6B00' fill-opacity='0.05'%3E%3Cpath d='M20 0c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20zm0 37.5c-9.6 0-17.5-7.9-17.5-17.5s7.9-17.5 17.5-17.5 17.5 7.9 17.5 17.5-7.9 17.5-17.5 17.5z'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.promotions-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.promotions-intro p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
}

.promotions-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.promotions-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hard);
}

.promotions-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(136, 0, 255, 0.2));
    z-index: 1;
}

.promotions-image img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.promotions-image:hover img {
    transform: scale(1.05);
}

.promo-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.promo-badge i {
    margin-right: 8px;
    font-size: 1rem;
}

.promotions-list {
    flex: 1.5;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promo-card {
    display: flex;
    align-items: flex-start;
    background-color: var(--lighter-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.promo-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-hard);
}

.promo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.promo-card:nth-child(even) .promo-icon {
    background: var(--gradient-secondary);
}

.promo-icon i {
    color: white;
    font-size: 1.2rem;
}

.promo-content {
    flex: 1;
}

.promo-content h3 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.promo-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.promotions-details {
    background-color: var(--lighter-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-soft);
}

.promotions-details p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.promotions-details p:last-child {
    margin-bottom: 0;
}

.promotions-details strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.promotions-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .promotions-section {
        padding: 70px 0;
    }

    .promotions-content {
        flex-direction: column;
    }

    .promotions-image,
    .promotions-list {
        flex: 100%;
        max-width: 100%;
    }

    .promotions-image {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .promotions-section {
        padding: 60px 0;
    }

    .promotions-intro {
        margin-bottom: 30px;
    }

    .promotions-intro p {
        font-size: 1rem;
    }

    .promo-card {
        padding: 15px;
    }

    .promo-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }

    .promo-icon i {
        font-size: 1rem;
    }

    .promo-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .promotions-section {
        padding: 50px 0;
    }

    .promo-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .promo-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .promo-badge {
        bottom: 10px;
        left: 10px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .promotions-details {
        padding: 20px;
    }
}