/* Global Reset & Box Sizing */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* Base styles for dark theme */
:root {
    --primary-color: #f5c518;
    /* Gold/Yellow accent color */
    --secondary-color: #ff4d4d;
    /* Red accent color */
    --dark-bg: #121212;
    /* Main dark background */
    --darker-bg: #0a0a0a;
    /* Darker elements */
    --card-bg: #1e1e1e;
    /* Card/section background */
    --text-primary: #ffffff;
    /* Primary text color */
    --text-secondary: #cccccc;
    /* Secondary text color */
    --text-accent: #f5c518;
    /* Accent text color */
    --border-color: #333333;
    /* Border color */
}

body {
    margin: 0;
    /* Removed duplicate margin: 0 */
    /* Removed duplicate padding: 0 */
    font-family: 'Sarabun', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    padding-top: 80px; /* For fixed header */
    padding-bottom: 60px; /* For sticky buttons */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 20px;
}

.header-left {
    display: flex;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-highlight {
    color: var(--primary-color);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    margin: 0 5px;
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.nav-link i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-action {
    margin-left: 10px;
}

.btn-login,
.btn-register {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-login {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-register {
    background-color: var(--primary-color);
    color: #000;
    border: 1px solid var(--primary-color);
}

.btn-register:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(245, 197, 24, 0.3);
}

.btn-login i,
.btn-register i {
    margin-right: 8px;
}

.header-right {
    display: none;
    align-items: center;
}

.btn-login-sm,
.btn-register-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.btn-login-sm {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.btn-register-sm {
    background-color: var(--primary-color);
    color: #000;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    z-index: 10;
    padding: 0;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    background-color: var(--text-primary);
    height: 2px;
    width: 24px;
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hamburger::before {
    top: -8px;
    left: 0;
}

.hamburger::after {
    bottom: -8px;
    left: 0;
}

.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Sticky header effect */
.site-header.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    height: 70px;
}

/* Footer Styles */
.site-footer {
    background-color: var(--darker-bg);
    padding: 70px 0 0;
    margin-top: 70px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    flex: 2;
    min-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.footer-links {
    flex: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links-column {
    flex: 1;
    min-width: 200px;
}

.footer-links-column h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-top: 0;
    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-color: var(--primary-color);
}

.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-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods i {
    color: var(--text-secondary);
    font-size: 1.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.5);
    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: 12px 5px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sticky-btn:last-child {
    border-right: none;
}

.sticky-btn i {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.sticky-btn span {
    font-size: 0.9rem;
    font-weight: 500;
}

.sticky-btn:nth-child(1):hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.sticky-btn:nth-child(2):hover {
    background-color: rgba(245, 197, 24, 0.1);
    color: var(--primary-color);
}

.sticky-btn:nth-child(3):hover {
    background-color: rgba(255, 77, 77, 0.1);
    color: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .nav-link {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .btn-login,
    .btn-register {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .header-container {
        height: 70px;
        padding: 0 15px;
    }

    .logo-text {
        font-size: 1.6rem;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: rgba(15, 15, 15, 0.98);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        padding: 80px 0 30px;
        z-index: 9;
        overflow-y: auto;
        transition: right 0.3s ease;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        margin: 0;
    }

    .nav-link {
        width: 100%;
        padding: 15px 25px;
        border-radius: 0;
        border-left: 3px solid transparent;
    }

    .nav-link.active {
        border-left-color: var(--primary-color);
        background-color: rgba(245, 197, 24, 0.1);
    }

    .nav-action {
        margin: 10px 20px;
    }

    .btn-login,
    .btn-register {
        width: 100%;
        justify-content: center;
    }

    .header-right {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 60px;
        padding: 0 10px;
    }

    .logo-img {
        height: 30px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .main-nav {
        width: 100%;
        right: -100%;
    }

    .btn-login-sm,
    .btn-register-sm {
        width: 36px;
        height: 36px;
        margin-right: 8px;
    }
}

/* Logo styles */
.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #111111, #222222);
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), transparent, var(--primary-color));
    border-radius: 10px;
    z-index: -1;
    opacity: 0.5;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-highlight {
    color: var(--primary-color);
    background: linear-gradient(to right, var(--primary-color), #ffcc33);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.site-footer .logo-wrapper {
    margin-bottom: 15px;
}

/* Media Queries for Logo */
@media (max-width: 992px) {
    .logo-wrapper {
        padding: 6px 12px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .logo-wrapper {
        padding: 5px 10px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
}

/* Hero Section CSS */

/* Base styles for dark theme */
:root {
    --primary-color: #f5c518;
    /* Gold/Yellow accent color */
    --secondary-color: #ff4d4d;
    /* Red accent color */
    --dark-bg: #121212;
    /* Main dark background */
    --darker-bg: #0a0a0a;
    /* Darker elements */
    --card-bg: #1e1e1e;
    /* Card/section background */
    --text-primary: #ffffff;
    /* Primary text color */
    --text-secondary: #cccccc;
    /* Secondary text color */
    --text-accent: #f5c518;
    /* Accent text color */
    --border-color: #333333;
    /* Border color */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Sarabun', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('images/0099_3_a-photo-of-a-group-of-very-sexy-asian-wo_Ew_9dvsaRUWX0m87UEV88g_DQbnPXq5SlSfIIQ8I2d3eA.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 60px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(18, 18, 18, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-section h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-accent);
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-description {
    max-width: 800px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    background-color: rgba(30, 30, 30, 0.7);
    padding: 12px 20px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 12px;
}

.feature span {
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 4px 12px rgba(245, 197, 24, 0.3);
}

.btn-primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(245, 197, 24, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 100px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .feature {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

/* Casino Games Section Styles */
.casino-games-section {
    background-color: var(--darker-bg);
    padding: 80px 0;
    position: relative;
}

.casino-games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.game-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    background-color: var(--primary-color);
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 197, 24, 0.4);
}

.play-btn:hover {
    background-color: #e6b800;
    transform: scale(1.05);
}

.game-details {
    padding: 25px;
}

.game-details h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.game-details h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.game-details p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.game-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.game-features span {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.game-features i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 0.9rem;
}

.section-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.8));
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.section-cta p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-primary);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .casino-games-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .game-categories {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .section-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .casino-games-section {
        padding: 40px 0;
    }

    .game-categories {
        grid-template-columns: 1fr;
    }

    .game-image {
        height: 180px;
    }

    .section-cta {
        padding: 30px 20px;
    }
}

/* Financial Security Section Styles */
.financial-security-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 80px 0;
    position: relative;
}

.financial-security-section .section-header {
    text-align: left;
    max-width: 800px;
    margin-bottom: 50px;
}

.financial-security-section .section-header h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.financial-security-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.security-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.security-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.security-image .main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    display: block;
}

.security-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: #000;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

.security-badge i {
    font-size: 1.5rem;
}

.security-text {
    flex: 2;
    min-width: 300px;
}

.highlight-text {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.7;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 25px;
}

.security-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.security-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.feature-list-container {
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

.feature-list-container h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 4px;
}

.feature-list li span {
    color: var(--text-secondary);
    line-height: 1.5;
}

.financial-cta {
    margin-top: 30px;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    padding: 12px 25px;
    border-radius: 6px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 197, 24, 0.2);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.trust-item {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #e6b800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.trust-icon i {
    font-size: 1.8rem;
    color: #000;
}

.trust-item h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 15px;
}

.trust-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .financial-security-section {
        padding: 60px 0;
    }

    .financial-security-section .section-header h2 {
        font-size: 2.2rem;
    }

    .security-image {
        flex: 1 0 100%;
        margin-bottom: 40px;
    }

    .security-text {
        flex: 1 0 100%;
    }

    .security-badge {
        bottom: -15px;
        right: -10px;
        padding: 10px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .financial-security-section .section-header h2 {
        font-size: 1.8rem;
    }

    .highlight-text {
        font-size: 1.1rem;
    }

    .security-text p {
        font-size: 1rem;
    }

    .feature-list-container h3 {
        font-size: 1.2rem;
    }

    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .financial-security-section {
        padding: 40px 0;
    }

    .security-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -25px;
        margin-right: auto;
        margin-left: auto;
        width: fit-content;
        z-index: 2;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
    }

    .trust-item {
        padding: 25px 20px;
    }
}

/* Technology Section Styles */
.technology-section {
    position: relative;
    padding: 100px 0 80px;
    background-color: var(--darker-bg);
    overflow: hidden; /* Added to contain potential overflow from children */
}

.tech-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden; /* Contain animated background */
    z-index: 1;
}

.tech-animated-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f5c518' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    transform: rotate(5deg);
    opacity: 0.3;
    animation: bgPan 120s linear infinite;
}

@keyframes bgPan {
    0% {
        transform: rotate(0deg) translateZ(0);
    }

    100% {
        transform: rotate(360deg) translateZ(0);
    }
}

.technology-section .container {
    position: relative;
    z-index: 2;
}

.technology-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.technology-section h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.technology-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.tech-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.tech-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 70px;
    align-items: center;
}

.tech-device {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.device-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto 20px;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    background-color: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 197, 24, 0.1);
}

.device-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.device-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 5s ease-in-out;
}

.device-wrapper:hover .device-screen img {
    transform: scale(1.1);
}

.screen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-dot {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.8;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.devices-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.devices-icons span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.devices-icons span:hover {
    background-color: var(--primary-color);
    color: #000;
    transform: translateY(-5px);
}

.tech-features {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tech-feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(30, 30, 30, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), #e6b800);
    color: #000;
    font-size: 1.5rem;
}

.feature-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.tech-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.stat-item {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-family: 'Prompt', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number span {
    font-size: 1rem;
    margin-left: 5px;
    opacity: 0.8;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.tech-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.8));
    padding: 40px;
    border-radius: 12px;
    margin: 60px 0;
    flex-wrap: wrap;
    gap: 30px;
}

.tech-cta-text {
    flex: 1;
    min-width: 300px;
}

.tech-cta-text h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 15px;
}

.tech-cta-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1.1rem;
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary-color), #e6b800);
    color: #000;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-color), #e6b800);
    z-index: -1;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-3px);
}

.btn-glow:hover::before {
    opacity: 0.5;
}

.tech-path {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 50px;
    padding: 30px;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 12px;
}

.path-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background-color: rgba(20, 20, 20, 0.7);
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.path-item:hover {
    transform: translateY(-5px);
}

.path-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
}

.path-content h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0 0 5px;
}

.path-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.path-arrow {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .technology-section {
        padding: 70px 0 60px;
    }

    .technology-section h2 {
        font-size: 2.2rem;
    }

    .tech-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .technology-section h2 {
        font-size: 1.8rem;
    }

    .tech-subtitle {
        font-size: 1.1rem;
    }

    .tech-feature-item {
        padding: 15px;
    }

    .feature-content h3 {
        font-size: 1.2rem;
    }

    .tech-cta {
        padding: 30px 25px;
    }

    .tech-cta-text h3 {
        font-size: 1.4rem;
    }

    .path-arrow {
        display: none;
    }

    .tech-path {
        flex-direction: column;
        gap: 10px;
    }

    .path-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .technology-section {
        padding: 50px 0 40px;
    }

    .tech-device {
        margin-bottom: 30px;
    }

    .tech-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .tech-cta {
        text-align: center;
    }

    .btn-glow {
        width: 100%;
        justify-content: center;
    }
}

/* Promotions Section Styles */
.promotions-section {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    overflow: hidden; /* Added to contain potential overflow from children */
}

/* Floating particles animation */
.promo-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Contain floating particles */
    z-index: 1;
}

.promo-particles span {
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    opacity: 0.2;
    border-radius: 50%;
    animation: float 30s linear infinite;
}

.promo-particles span:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 45s;
}

.promo-particles span:nth-child(2) {
    top: 30%;
    left: 15%;
    animation-delay: 5s;
    animation-duration: 35s;
    width: 12px;
    height: 12px;
}

.promo-particles span:nth-child(3) {
    top: 60%;
    left: 25%;
    animation-delay: 10s;
    animation-duration: 40s;
    width: 6px;
    height: 6px;
}

.promo-particles span:nth-child(4) {
    top: 20%;
    left: 40%;
    animation-delay: 15s;
    animation-duration: 35s;
    width: 10px;
    height: 10px;
}

.promo-particles span:nth-child(5) {
    top: 70%;
    left: 55%;
    animation-delay: 5s;
    animation-duration: 40s;
}

.promo-particles span:nth-child(6) {
    top: 15%;
    left: 65%;
    animation-delay: 0s;
    animation-duration: 45s;
    width: 15px;
    height: 15px;
}

.promo-particles span:nth-child(7) {
    top: 40%;
    left: 80%;
    animation-delay: 7s;
    animation-duration: 38s;
}

.promo-particles span:nth-child(8) {
    top: 75%;
    left: 85%;
    animation-delay: 12s;
    animation-duration: 42s;
    width: 7px;
    height: 7px;
}

.promo-particles span:nth-child(9) {
    top: 50%;
    left: 95%;
    animation-delay: 15s;
    animation-duration: 35s;
    width: 9px;
    height: 9px;
}

.promo-particles span:nth-child(10) {
    top: 90%;
    left: 10%;
    animation-delay: 10s;
    animation-duration: 45s;
    width: 12px;
    height: 12px;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }

    25% {
        opacity: 0.3;
    }

    50% {
        transform: translateY(-150px) rotate(180deg);
        opacity: 0.1;
    }

    75% {
        opacity: 0.25;
    }

    100% {
        transform: translateY(-300px) rotate(360deg);
        opacity: 0;
    }
}

.promotions-section .container {
    position: relative;
    z-index: 2;
}

.promotions-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.deco-line {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.header-decoration i {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0 15px;
}

.promotions-section h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 20px;
}

.promotions-section .section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.promo-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.7), rgba(20, 20, 20, 0.8));
    border-radius: 12px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.8;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.promo-card.featured {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.7), rgba(25, 25, 25, 0.8));
    border: 1px solid rgba(245, 197, 24, 0.2);
    transform: scale(1.03);
}

.promo-card.featured::before {
    height: 6px;
    opacity: 1;
}

.promo-card.featured:hover {
    transform: translateY(-10px) scale(1.03);
}

.promo-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: #000;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.promo-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.2), rgba(245, 197, 24, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.promo-icon i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.promo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promo-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 15px;
}

.promo-highlight {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.promo-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.promo-cta {
    margin-top: auto;
}

.btn-promotion {
    background-color: rgba(245, 197, 24, 0.15);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-promotion:hover {
    background-color: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.promo-highlight-banner {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.9), rgba(20, 20, 20, 0.9));
    border-radius: 15px;
    padding: 30px;
    margin: 60px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.promo-highlight-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f5c518' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 2;
    min-width: 300px;
    position: relative;
    z-index: 1;
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #e6b800);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-text h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 10px;
}

.highlight-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1.05rem;
}

.highlight-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    flex: 1;
    min-width: 250px;
    position: relative;
    z-index: 1;
}

.countdown-timer {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 10px 15px;
    text-align: center;
}

.timer-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-num {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.time-unit {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.time-divider {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: -8px;
}

.btn-highlight {
    background-color: var(--primary-color);
    color: #000;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(245, 197, 24, 0.3);
}

.btn-highlight:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 197, 24, 0.4);
}

.promo-terms {
    background-color: rgba(20, 20, 20, 0.7);
    border-radius: 10px;
    padding: 25px 30px;
    border-left: 4px solid var(--primary-color);
}

.terms-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.terms-header i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.terms-header h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0;
}

.terms-list {
    padding-left: 20px;
    margin: 0;
}

.terms-list li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.terms-list li:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .promotions-section {
        padding: 70px 0 60px;
    }

    .promotions-section h2 {
        font-size: 2.2rem;
    }

    .promo-card.featured {
        transform: scale(1);
    }

    .promo-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }
}

@media (max-width: 768px) {
    .promotions-section h2 {
        font-size: 1.8rem;
    }

    .promotions-section .section-description {
        font-size: 1rem;
    }

    .highlight-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .highlight-cta {
        width: 100%;
        align-items: center;
    }
}

@media (max-width: 580px) {
    .promotions-section {
        padding: 50px 0 40px;
    }

    .header-decoration .deco-line {
        width: 50px;
    }

    .promo-highlight-banner {
        padding: 25px 20px;
    }

    .highlight-text h3 {
        font-size: 1.4rem;
    }

    .highlight-text p {
        font-size: 0.95rem;
    }

    .promo-terms {
        padding: 20px;
    }
}
