/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

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

.logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: var(--text-primary);
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
}

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

.logo-tagline {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-list li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-list li a:hover {
    color: var(--text-primary);
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-list li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.btn-outline-light {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: var(--text-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--text-primary);
}

.hamburger-icon {
    display: block;
    position: relative;
    width: 24px;
    height: 18px;
}

.hamburger-line {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background-color: var(--dark-surface);
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    padding: 20px;
}

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

.mobile-nav-list li {
    margin-bottom: 15px;
}

.mobile-nav-list li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-nav-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.mobile-menu-buttons {
    padding: 20px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Footer Styles */
.site-footer {
    background-color: var(--dark-surface);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 30%, rgba(156, 39, 176, 0.1), transparent 70%), radial-gradient(circle at 90% 70%, rgba(255, 152, 0, 0.05), transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    margin-bottom: 60px;
}

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

.footer-logo .logo-text {
    font-size: 2.2rem;
}

.footer-slogan {
    margin-top: 15px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.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: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

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

.footer-links-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

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

.footer-links-column ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links-column ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info {
    max-width: 600px;
}

.footer-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
}

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

.footer-payment-methods i:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-copyright {
    text-align: right;
}

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 99;
    padding: 0 20px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--dark-surface);
    color: var(--text-primary);
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.sticky-btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.sticky-btn-primary:hover {
    background-color: var(--accent-gold);
}

.sticky-btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-primary);
}

.sticky-btn-secondary:hover {
    background-color: var(--accent-purple);
}

/* Media Queries for Header, Footer and Sticky Buttons */
@media screen and (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-slogan {
        max-width: 500px;
        margin: 15px auto 0;
    }
}

@media screen and (max-width: 1150px) {
    .main-nav,
    .header-buttons {
        display: none;
    }

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

@media screen and (max-width: 992px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-copyright {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .header-wrapper {
        padding: 15px 0;
    }

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

    .logo-tagline {
        font-size: 0.7rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .footer-links-column ul li a::before {
        content: none;
    }

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

    .site-footer {
        padding: 50px 0 80px;
    }

    .sticky-buttons {
        bottom: 10px;
        padding: 0 10px;
    }

    .sticky-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    .logo-tagline {
        display: none;
    }

    .sticky-buttons {
        gap: 5px;
    }

    .sticky-btn {
        flex: 1;
        padding: 10px;
        flex-direction: column;
        gap: 5px;
        font-size: 0.8rem;
    }

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

    .footer-payment-methods {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Base Theme CSS */
:root {
    /* Color Variables */
    --dark-bg: #121212;
    --dark-surface: #1e1e1e;
    --dark-surface-lighter: #2d2d2d;
    --primary-color: #ff9800;
    --secondary-color: #9c27b0;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent-gold: #ffd700;
    --accent-red: #e53935;
    --accent-purple: #7b1fa2;
    --accent-blue: #2196f3;
    --success-green: #4caf50;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    /* Font Variables */
    --heading-font: 'Prompt', sans-serif;
    --body-font: 'Sarabun', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

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

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

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

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    transform: translateY(-3px);
    color: var(--dark-bg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-primary);
}

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

/* Hero Section Styles */
.hero-section {
    padding: 80px 0;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), var(--dark-bg)), url('images/w69bet (17).webp');
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(156, 39, 176, 0.2), transparent 70%);
    pointer-events: none;
}

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

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

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    animation: float 6s infinite ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.floating-card {
    top: 10%;
    right: 20%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.floating-chip {
    bottom: 20%;
    left: 10%;
    width: 50px;
    height: 50px;
    animation-delay: 2s;
}

.floating-dice {
    bottom: 30%;
    right: 15%;
    width: 40px;
    height: 40px;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .hero-section .container {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }

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

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

@media screen and (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        padding-top: 120px;
    }

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

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

    .floating-element {
        transform: scale(0.8);
    }
}

@media screen and (max-width: 576px) {
    .hero-section {
        padding: 40px 0;
        padding-top: 120px;
    }

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

    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

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

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 200px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.section-divider span {
    padding: 0 15px;
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.experience-text {
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--box-shadow);
}

.experience-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.experience-text a {
    color: var(--accent-blue);
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.experience-text a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-blue);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.experience-text a:hover {
    color: var(--accent-gold);
}

.experience-text a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
    background-color: var(--accent-gold);
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.8), rgba(30, 30, 30, 0.8));
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-top-color: var(--secondary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--dark-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.experience-cta {
    text-align: center;
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.9));
    border-radius: 15px;
    padding: 40px;
    margin-top: 20px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 152, 0, 0.1);
}

.experience-cta p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.experience-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.experience-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-element {
    position: absolute;
    opacity: 0.1;
    color: var(--accent-gold);
    font-size: 4rem;
}

.bg-cards {
    top: 15%;
    left: 5%;
    animation: floatSlow 15s infinite ease-in-out;
}

.bg-chips {
    bottom: 10%;
    right: 8%;
    animation: floatSlow 12s infinite ease-in-out reverse;
}

.bg-dice {
    top: 60%;
    left: 15%;
    animation: floatSlow 10s infinite ease-in-out;
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, 15px) rotate(5deg);
    }

    50% {
        transform: translate(5px, -15px) rotate(-5deg);
    }

    75% {
        transform: translate(-20px, 10px) rotate(3deg);
    }
}

/* Media Queries for Experience Section */
@media screen and (max-width: 992px) {
    .experience-section {
        padding: 80px 0;
    }

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

@media screen and (max-width: 768px) {
    .experience-section {
        padding: 60px 0;
    }

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

    .experience-features {
        grid-template-columns: 1fr;
    }

    .experience-text {
        padding: 25px;
    }

    .feature-card {
        padding: 25px;
    }

    .experience-cta {
        padding: 30px;
    }
}

@media screen and (max-width: 576px) {
    .experience-section {
        padding: 40px 0;
    }

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

    .section-divider {
        width: 180px;
    }

    .experience-text {
        padding: 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

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

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

/* Promotions Section Styles */
.promotions-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--dark-bg);
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(156, 39, 176, 0.15), transparent 70%), radial-gradient(circle at 80% 70%, rgba(255, 152, 0, 0.1), transparent 70%);
    pointer-events: none;
}

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.intro-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

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

.promotions-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.promo-card {
    background: linear-gradient(145deg, var(--dark-surface), var(--dark-surface-lighter));
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
}

.promo-card:nth-child(2n):hover {
    border-bottom-color: var(--secondary-color);
}

.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;
    transition: opacity 0.4s ease;
}

.promo-card:hover::before {
    opacity: 1;
}

.promo-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 152, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.promo-card:hover .promo-icon {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.promo-card:nth-child(2n) .promo-icon {
    background-color: rgba(156, 39, 176, 0.1);
    color: var(--secondary-color);
}

.promo-card:nth-child(2n):hover .promo-icon {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.promo-content {
    flex: 1;
}

.promo-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.promo-card:hover .promo-content h3 {
    color: var(--primary-color);
}

.promo-card:nth-child(2n):hover .promo-content h3 {
    color: var(--secondary-color);
}

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

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

.promo-badge {
    position: absolute;
    top: 20px;
    right: -15px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-purple));
    padding: 5px 15px;
    border-radius: 30px;
    transform: rotate(35deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.promo-card:hover .promo-badge {
    right: -10px;
    transform: rotate(25deg);
}

.promo-badge span {
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
}

.promotions-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    background-color: var(--dark-surface);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
}

.info-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.promotions-info:hover .image-overlay i {
    transform: scale(1.2);
    color: var(--accent-gold);
    opacity: 1;
}

.info-content {
    padding: 40px;
}

.info-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.info-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.promotions-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.decoration-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    font-size: 5rem;
}

.dec-gift {
    top: 10%;
    right: 5%;
    animation: float-promotion 20s infinite ease-in-out;
}

.dec-percent {
    bottom: 15%;
    left: 7%;
    animation: float-promotion 15s infinite ease-in-out reverse;
}

.dec-tag {
    top: 45%;
    right: 15%;
    animation: float-promotion 18s infinite ease-in-out 2s;
}

.dec-ticket {
    top: 25%;
    left: 12%;
    animation: float-promotion 25s infinite ease-in-out 5s;
}

@keyframes float-promotion {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    20% {
        transform: translate(30px, 10px) rotate(5deg);
    }

    40% {
        transform: translate(10px, -20px) rotate(-3deg);
    }

    60% {
        transform: translate(-20px, 15px) rotate(2deg);
    }

    80% {
        transform: translate(-5px, -25px) rotate(-5deg);
    }
}

/* Media Queries for Promotions Section */
@media screen and (max-width: 1200px) {
    .promotions-info {
        grid-template-columns: 1fr;
    }

    .info-image {
        height: 300px;
    }
}

@media screen and (max-width: 992px) {
    .promotions-section {
        padding: 80px 0;
    }

    .intro-text p {
        font-size: 1.1rem;
    }

    .promotions-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .info-content {
        padding: 30px;
    }

    .info-content h3 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    .promotions-section {
        padding: 60px 0;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .promotions-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .decoration-element {
        font-size: 3rem;
    }
}

@media screen and (max-width: 576px) {
    .promotions-section {
        padding: 40px 0;
    }

    .info-image {
        height: 200px;
    }

    .info-content {
        padding: 20px;
    }

    .info-content h3 {
        font-size: 1.4rem;
    }

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

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

    .promo-card {
        padding: 20px;
    }

    .promo-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .decoration-element {
        display: none;
    }
}

/* Popular Games Section Styles */
.games-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(to bottom, var(--dark-bg), var(--dark-surface), var(--dark-bg));
    overflow: hidden;
}

.games-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(156, 39, 176, 0.2) 0%, rgba(255, 152, 0, 0.1) 50%, transparent 70%);
    filter: blur(50px);
    opacity: 0.7;
    z-index: 0;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C27B0' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

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

.games-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.games-intro p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

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

.game-categories {
    margin-bottom: 50px;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 5px;
    flex-wrap: wrap;
}

.category-tab {
    background-color: var(--dark-surface);
    color: var(--text-secondary);
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.category-tab:hover {
    background-color: var(--dark-surface-lighter);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.category-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.category-tab i {
    font-size: 1.1rem;
}

.game-category-content {
    display: none;
}

.game-category-content.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.game-card {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.7), rgba(35, 35, 35, 0.7));
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 152, 0, 0.2);
}

.game-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.game-card:hover .game-thumbnail img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.game-card:hover .play-btn {
    transform: scale(1);
    opacity: 1;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--accent-gold);
    color: var(--dark-bg);
}

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.game-badge.hot {
    background: linear-gradient(135deg, var(--accent-red), var(--primary-color));
    color: white;
}

.game-badge.new {
    background: linear-gradient(135deg, var(--accent-blue), var(--secondary-color));
    color: white;
}

.game-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.game-card:hover .game-info h3 {
    color: var(--accent-gold);
}

.game-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    flex-grow: 1;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.game-provider {
    font-size: 0.85rem;
    color: var(--text-secondary);
    background-color: rgba(0, 0, 0, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
}

.game-rating {
    font-size: 0.9rem;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 5px;
}

.game-rating i {
    color: var(--accent-gold);
}

.games-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.description-column p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.description-column strong {
    color: var(--accent-gold);
}

.games-cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Media Queries for Games Section */
@media screen and (max-width: 1200px) {
    .game-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 992px) {
    .games-section {
        padding: 80px 0;
    }

    .games-intro p {
        font-size: 1.1rem;
    }

    .games-description {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .game-categories {
        padding: 25px;
    }
}

@media screen and (max-width: 768px) {
    .games-section {
        padding: 60px 0;
    }

    .games-intro p {
        font-size: 1rem;
    }

    .game-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .category-tab {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .category-tab i {
        font-size: 1rem;
    }

    .game-categories {
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    .games-section {
        padding: 40px 0;
    }

    .category-tab {
        flex: 1;
        min-width: calc(50% - 5px);
        justify-content: center;
        padding: 10px;
    }

    .games-cta {
        flex-direction: column;
        gap: 15px;
    }

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

    .game-info h3 {
        font-size: 1.2rem;
    }

    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Security Section Styles */
.security-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(145deg, var(--dark-bg), var(--dark-surface), var(--dark-bg));
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(33, 150, 243, 0.1), transparent 60%);
    pointer-events: none;
}

.security-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

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

.security-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 350px;
}

.security-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.security-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: pulse-security 3s infinite;
}

@keyframes pulse-security {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(33, 150, 243, 0.5);
    }
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.8), rgba(35, 35, 35, 0.8));
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-left-color: var(--accent-blue);
}

.feature-icon {
    min-width: 40px;
    height: 40px;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--accent-blue);
    color: var(--text-primary);
}

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

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

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

.security-text {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.5), rgba(35, 35, 35, 0.5));
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.security-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

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

.security-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.stat-item {
    background: linear-gradient(145deg, rgba(33, 150, 243, 0.1), rgba(156, 39, 176, 0.1));
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--secondary-color));
    opacity: 0.7;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-family: var(--heading-font);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.security-cta {
    text-align: center;
    margin-top: 20px;
}

.security-cta .btn {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
}

.security-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-color));
    opacity: 0.3;
    animation: float-particle 20s infinite linear;
}

.particle:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 5%;
    filter: blur(30px);
    animation-duration: 25s;
}

.particle:nth-child(2) {
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: 5%;
    filter: blur(40px);
    animation-duration: 30s;
}

.particle:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 10%;
    filter: blur(20px);
    animation-duration: 22s;
}

.particle:nth-child(4) {
    width: 140px;
    height: 140px;
    top: 30%;
    right: 20%;
    filter: blur(35px);
    animation-duration: 28s;
}

.particle:nth-child(5) {
    width: 100px;
    height: 100px;
    bottom: 25%;
    left: 30%;
    filter: blur(25px);
    animation-duration: 24s;
}

.particle:nth-child(6) {
    width: 160px;
    height: 160px;
    top: 70%;
    right: 35%;
    filter: blur(35px);
    animation-duration: 26s;
}

@keyframes float-particle {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }

    50% {
        transform: translate(50px, 100px) rotate(180deg);
    }

    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Media Queries for Security Section */
@media screen and (max-width: 1200px) {
    .security-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .security-image {
        height: 300px;
    }

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

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

@media screen and (max-width: 992px) {
    .security-section {
        padding: 80px 0;
    }
}

@media screen and (max-width: 768px) {
    .security-section {
        padding: 60px 0;
    }

    .security-features {
        grid-template-columns: 1fr;
    }

    .security-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 576px) {
    .security-section {
        padding: 40px 0;
    }

    .security-image {
        height: 200px;
    }

    .security-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }

    .security-text {
        padding: 20px;
    }

    .security-text p {
        font-size: 0.95rem;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-icon {
        min-width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .security-cta .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Easy Access Section Styles */
.access-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--dark-surface);
    overflow: hidden;
}

.access-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-circuit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 304 304' width='304' height='304'%3E%3Cpath fill='%23ff9800' fill-opacity='0.1' d='M44.1 224a5 5 0 1 1 0 2H0v-2h44.1zm160 48a5 5 0 1 1 0 2H82v-2h122.1zm57.8-46a5 5 0 1 1 0-2H304v2h-42.1zm0 16a5 5 0 1 1 0-2H304v2h-42.1zm6.2-114a5 5 0 1 1 0 2h-86.2a5 5 0 1 1 0-2h86.2zm-256-48a5 5 0 1 1 0 2H0v-2h12.1zm185.8 34a5 5 0 1 1 0-2h86.2a5 5 0 1 1 0 2h-86.2zM258 12.1a5 5 0 1 1-2 0V0h2v12.1zm-64 208a5 5 0 1 1-2 0v-54.2a5 5 0 1 1 2 0v54.2zm48-198.2V80h62v2h-64V21.9a5 5 0 1 1 2 0zm16 16V64h46v2h-48V37.9a5 5 0 1 1 2 0zm-128 96V208h16v12.1a5 5 0 1 1-2 0V210h-16v-76.1a5 5 0 1 1 2 0zm-5.9-21.9a5 5 0 1 1 0 2H114v48H85.9a5 5 0 1 1 0-2H112v-48h12.1zm-6.2 130a5 5 0 1 1 0-2H176v-74.1a5 5 0 1 1 2 0V242h-60.1zm-16-64a5 5 0 1 1 0-2H114v48h10.1a5 5 0 1 1 0 2H112v-48h-10.1zM66 284.1a5 5 0 1 1-2 0V274H50v30h-2v-32h18v12.1zM236.1 176a5 5 0 1 1 0 2H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30a5 5 0 1 1 0-2H274v44.1a5 5 0 1 1-2 0V146h-10.1zm-64 96a5 5 0 1 1 0-2H208v-80h16v-14h-42.1a5 5 0 1 1 0-2H226v18h-16v80h-12.1zm86.2-210a5 5 0 1 1 0 2H272V0h2v32h10.1zM98 101.9V146H53.9a5 5 0 1 1 0-2H96v-42.1a5 5 0 1 1 2 0zM53.9 34a5 5 0 1 1 0-2H80V0h2v34H53.9zm60.1 3.9V66H82v64H69.9a5 5 0 1 1 0-2H80V64h32V37.9a5 5 0 1 1 2 0zM101.9 82a5 5 0 1 1 0-2H128V37.9a5 5 0 1 1 2 0V82h-28.1zm16-64a5 5 0 1 1 0-2H146v44.1a5 5 0 1 1-2 0V18h-26.1zm102.2 270a5 5 0 1 1 0 2H98v14h-2v-16h124.1zM242 149.9V160h16v34h-16v62h48v48h-2v-46h-48v-66h16v-30h-16v-12.1a5 5 0 1 1 2 0zM53.9 18a5 5 0 1 1 0-2H64V2H48V0h18v18H53.9zm112 32a5 5 0 1 1 0-2H192V0h50v2h-48v48h-28.1zm-48-48a5 5 0 0 1-9.8-2h2.07a3 3 0 1 0 5.66 0H178v34h-18V21.9a5 5 0 1 1 2 0V32h14V2h-58.1zm0 96a5 5 0 1 1 0-2H137l32-32h39V21.9a5 5 0 1 1 2 0V66h-40.17l-32 32H117.9zm28.1 90.1a5 5 0 1 1-2 0v-76.51L175.59 80H224V21.9a5 5 0 1 1 2 0V82h-49.59L146 112.41v75.69zm16 32a5 5 0 1 1-2 0v-99.51L184.59 96H300.1a5 5 0 0 1 3.9-3.9v2.07a3 3 0 0 0 0 5.66v2.07a5 5 0 0 1-3.9-3.9H185.41L162 121.41v98.69zm-144-64a5 5 0 1 1-2 0v-3.51l48-48V48h32V0h2v50H66v55.41l-48 48v2.69zM50 53.9v43.51l-48 48V208h26.1a5 5 0 1 1 0 2H0v-65.41l48-48V53.9a5 5 0 1 1 2 0zm-16 16V89.41l-34 34v-2.82l32-32V69.9a5 5 0 1 1 2 0zM12.1 32a5 5 0 1 1 0 2H9.41L0 43.41V40.6L8.59 32h3.51zm265.8 18a5 5 0 1 1 0-2h18.69l7.41-7.41v2.82L297.41 50H277.9zm-16 160a5 5 0 1 1 0-2H288v-71.41l16-16v2.82l-14 14V210h-28.1zm-208 32a5 5 0 1 1 0-2H64v-22.59L40.59 194H21.9a5 5 0 1 1 0-2H41.41L66 217.59V242H53.9zm150.2 14a5 5 0 1 1 0 2H96v-56.6L56.6 162H37.9a5 5 0 1 1 0-2h19.5L98 200.6V256h106.1zm-150.2 2a5 5 0 1 1 0-2H80v-46.59L48.59 178H21.9a5 5 0 1 1 0-2H49.41L82 208.59V258H53.9zM34 39.8v1.61L9.41 66H0v-2h8.59L32 40.59V0h2v39.8zM2 300.1a5 5 0 0 1 3.9 3.9H3.83A3 3 0 0 0 0 302.17V256h18v48h-2v-46H2v42.1zM34 241v63h-2v-62H0v-2h34v1zM17 18H0v-2h16V0h2v18h-1zm273-2h14v2h-16V0h2v16zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1A5.02 5.02 0 0 1 6 97a5 5 0 0 1-6 4.9v-2.07a3 3 0 1 0 0-5.66V92.1zM80 272h2v32h-2v-32zm37.9 32h-2.07a3 3 0 0 0-5.66 0h-2.07a5 5 0 0 1 9.8 0zM5.9 0A5.02 5.02 0 0 1 0 5.9V3.83A3 3 0 0 0 3.83 0H5.9zm294.2 0h2.07A3 3 0 0 0 304 3.83V5.9a5 5 0 0 1-3.9-5.9zm3.9 300.1v2.07a3 3 0 0 0-1.83 1.83h-2.07a5 5 0 0 1 3.9-3.9zM97 100a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-48 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 96a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-144a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM49 36a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM33 68a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 240a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm80-176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm112 176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 180a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 84a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'%3E%3C/path%3E%3C/svg%3E");
    opacity: 0.1;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(156, 39, 176, 0.1), transparent 70%), radial-gradient(circle at 70% 60%, rgba(255, 152, 0, 0.08), transparent 70%);
}

.access-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.access-intro p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

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

.access-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.access-devices {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.device-showcase {
    position: relative;
    height: 500px;
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.5), rgba(35, 35, 35, 0.5));
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.device {
    position: absolute;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.device-desktop {
    width: 80%;
    max-width: 450px;
}

.device-tablet {
    width: 60%;
    max-width: 320px;
}

.device-mobile {
    width: 35%;
    max-width: 180px;
}

.device.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    z-index: 2;
}

.device-screen {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    background-color: var(--dark-bg);
    aspect-ratio: 16/9;
}

.device-mobile .device-screen {
    aspect-ratio: 9/16;
    border-radius: 20px;
}

.device-tablet .device-screen {
    aspect-ratio: 3/4;
    border-radius: 15px;
}

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

.device.active .device-screen img {
    transform: scale(1.05);
}

.screen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.device.active:hover .screen-overlay {
    opacity: 1;
}

.screen-overlay i {
    font-size: 3rem;
    color: var(--text-primary);
    opacity: 0.8;
}

.device-label {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.4s ease;
}

.device.active .device-label {
    opacity: 1;
    bottom: -30px;
}

.device-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.device-button {
    background-color: var(--dark-surface);
    color: var(--text-secondary);
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.device-button:hover {
    background-color: var(--dark-surface-lighter);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.device-button.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.device-button i {
    font-size: 1.1rem;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.access-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.access-point {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.5), rgba(35, 35, 35, 0.5));
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.access-point:hover {
    transform: translateX(5px);
    background: linear-gradient(145deg, rgba(50, 50, 50, 0.5), rgba(40, 40, 40, 0.5));
    border-color: rgba(255, 152, 0, 0.2);
}

.point-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark-bg);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.access-point:hover .point-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
}

.point-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

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

.access-summary {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.8), rgba(35, 35, 35, 0.8));
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
    text-align: center;
}

.access-summary p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

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

.access-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Media Queries for Access Section */
@media screen and (max-width: 1200px) {
    .access-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .device-showcase {
        height: 400px;
    }
}

@media screen and (max-width: 992px) {
    .access-section {
        padding: 80px 0;
    }

    .access-intro p {
        font-size: 1.1rem;
    }

    .device-showcase {
        height: 350px;
    }

    .point-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.5rem;
    }

    .point-content h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .access-section {
        padding: 60px 0;
    }

    .access-intro p {
        font-size: 1rem;
    }

    .device-showcase {
        height: 300px;
    }

    .device-desktop {
        width: 90%;
    }

    .device-tablet {
        width: 70%;
    }

    .device-mobile {
        width: 40%;
    }

    .access-point {
        padding: 20px;
    }

    .access-summary {
        padding: 25px;
    }

    .access-summary p {
        font-size: 1rem;
    }

    .device-buttons {
        flex-wrap: wrap;
    }

    .device-button {
        flex: 1;
        min-width: 110px;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .access-section {
        padding: 40px 0;
    }

    .device-showcase {
        height: 250px;
        padding: 15px;
    }

    .point-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.3rem;
    }

    .access-point {
        padding: 15px;
    }

    .access-cta {
        flex-direction: column;
        gap: 10px;
    }

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

    .screen-overlay i {
        font-size: 2rem;
    }

    .device-label {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}