/* Base Styles */
:root {
    --primary-color: #d4af37;
    --secondary-color: #f8d568;
    --dark-bg: #0c0c0c;
    --darker-bg: #050505;
    --light-text: #ffffff;
    --gray-text: #c0c0c0;
    --card-bg: #1a1a1a;
    --header-height: 80px;
    --footer-height: 300px;
    --transition: all 0.3s ease;
    --border-color: #333333;
    --accent-color: #ffd700;
    --gold-gradient: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7);
    --gold-gradient-hover: linear-gradient(to right, #fbf5b7, #b38728, #fcf6ba, #bf953f);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Kanit', 'Prompt', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 40px;
    color: var(--light-text);
}

p {
    margin-bottom: 15px;
    color: var(--gray-text);
}

a {
    text-decoration: none;
    color: var(--light-text);
    transition: var(--transition);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

section {
    padding: 80px 0;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 10px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.5));
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--light-text);
    text-transform: uppercase;
}

.logo-highlight {
    color: var(--primary-color);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-link:hover .logo-icon {
    transform: rotate(15deg);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 101;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--light-text);
}

/* Hero Section */
.hero-section {
    padding-top: var(--header-height);
    padding-bottom: 0;
    background-color: var(--darker-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 30%, rgba(212, 175, 55, 0.1), transparent 40%);
    z-index: 1;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0;
    max-width: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding: 80px;
    background-color: var(--dark-bg);
    max-width: 50%;
    position: relative;
    z-index: 2;
}

.hero-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, var(--dark-bg), transparent);
    z-index: 3;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    text-align: left;
    font-weight: 800;
    line-height: 1.2;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--gray-text);
    line-height: 1.8;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.primary-btn {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient-hover);
    transition: all 0.5s ease;
    z-index: -1;
}

.primary-btn:hover::before {
    left: 0;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.secondary-btn {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.5s ease;
    z-index: -1;
}

.secondary-btn:hover::before {
    left: 0;
}

.secondary-btn:hover {
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    height: 100vh;
    background-color: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.hero-image img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.5s ease;
}

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

/* About Section */
.about-section {
    background-color: var(--dark-bg);
}

.about-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-section .container {
    display: block;
}

.about-image {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

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

.feature {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

/* Games Section */
.games-section {
    background-color: var(--darker-bg);
}

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

.game-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.game-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

/* Promotion Section */
.promotion-section {
    background-color: var(--dark-bg);
}

.promotion-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.promotion-image {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.promotion-details {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promotion-item {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.promotion-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-color);
}

.promotion-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.promotion-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
    background-color: var(--darker-bg);
}

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

.contact-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Footer Styles */
footer {
    background-color: var(--darker-bg);
    padding: 80px 0 30px;
    color: var(--light-text);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 1;
    margin-right: 30px;
}

.footer-logo .logo-link {
    margin-bottom: 15px;
}

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

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

.footer-links h3, .footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: var(--gray-text);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.social-icons a:hover i {
    color: #000;
}

.social-icons i {
    font-size: 1.2rem;
    color: var(--light-text);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 5px;
    transition: var(--transition);
    width: 33.333%;
    max-width: 200px;
}

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

.sticky-btn span {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.login-btn {
    background-color: var(--card-bg);
    color: var(--light-text);
    border: 1px solid var(--border-color);
}

.register-btn {
    background-color: var(--primary-color);
    color: #000;
}

.free-credit-btn {
    background-color: var(--secondary-color);
    color: #000;
    border: none;
}

.sticky-btn:hover {
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h2 {
        font-size: 2.4rem;
    }
    
    .hero-section {
        min-height: auto;
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content, .hero-image {
        max-width: 100%;
        flex: 100%;
        width: 100%;
    }
    
    .hero-content {
        padding: 60px 40px;
        order: 2;
    }
    
    .hero-content::after {
        display: none;
    }
    
    .hero-image {
        height: 50vh;
        order: 1;
    }
    
    .about-image, .about-content,
    .promotion-image, .promotion-details {
        flex: 100%;
        padding-right: 0;
    }
    
    .about-image, .promotion-image {
        margin-top: 40px;
        order: 2;
    }
    
    .about-content, .promotion-details {
        order: 1;
    }
}

@media (max-width: 950px) {
    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--dark-bg);
        z-index: 100;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        padding: 80px 20px 20px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul li {
        margin: 10px 0;
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 101;
    }

    header .container {
        position: relative;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .logo-icon {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .hero-image {
        height: 40vh;
    }
    
    .features, .games-grid, .contact-info {
        grid-template-columns: 1fr;
    }
    
    .sticky-btn span {
        font-size: 0.8rem;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .logo-icon {
        font-size: 1.6rem;
    }
    
    .footer-logo .logo-text {
        font-size: 1.6rem;
    }
    
    .footer-logo .logo-icon {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        padding-top: calc(var(--header-height) - 10px);
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .hero-image {
        height: 30vh;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .sticky-btn i {
        font-size: 1.2rem;
    }
    
    .sticky-btn span {
        font-size: 0.7rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-icon {
        font-size: 1.4rem;
    }
    
    .footer-logo .logo-text {
        font-size: 1.4rem;
    }
    
    .footer-logo .logo-icon {
        font-size: 1.4rem;
    }
}

@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-image {
        height: 25vh;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
}

.feature:hover,
.game-card:hover,
.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-color);
}

.promotion-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-color);
}

/* Casino Section */
.casino-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

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

.casino-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.casino-section .container {
    position: relative;
    z-index: 2;
}

.casino-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.casino-text {
    flex: 1;
    min-width: 300px;
}

.casino-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}

.casino-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.casino-paragraphs p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.casino-paragraphs p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.casino-cards {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.casino-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.casino-card:hover::before {
    width: 10px;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--light-text);
}

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

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.feature-item {
    flex: 1;
    min-width: 300px;
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

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

.feature-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-text);
}

.feature-text p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.casino-cta {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.casino-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
}

.casino-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.casino-cta p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.casino-cta .btn {
    position: relative;
    z-index: 1;
    min-width: 220px;
}

@media (max-width: 992px) {
    .casino-content,
    .casino-features {
        flex-direction: column;
    }
    
    .casino-text h2 {
        font-size: 2.2rem;
    }
    
    .casino-card,
    .feature-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .casino-card::before {
        width: 100%;
        height: 5px;
    }
    
    .casino-card:hover::before {
        height: 8px;
        width: 100%;
    }
    
    .card-icon,
    .feature-item i {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .casino-text h2 {
        font-size: 2rem;
    }
    
    .casino-paragraphs p,
    .card-content p,
    .feature-text p {
        font-size: 1rem;
    }
    
    .casino-cta {
        padding: 30px 20px;
    }
    
    .casino-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .casino-text h2 {
        font-size: 1.8rem;
    }
    
    .casino-card,
    .feature-item {
        padding: 20px;
    }
    
    .casino-cta {
        padding: 25px 15px;
    }
    
    .casino-cta p {
        font-size: 1rem;
    }
}

/* Slot Section */
.slot-section {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.slot-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 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='%23d4af37' 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;
    z-index: 1;
}

.slot-section .container {
    position: relative;
    z-index: 2;
}

.slot-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.slot-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
}

.slot-header h2 {
    font-size: 2.8rem;
    text-align: center;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 20px;
}

.slot-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.slot-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.slot-text {
    flex: 1;
    min-width: 300px;
}

.slot-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.slot-text p strong {
    color: var(--primary-color);
    font-weight: 700;
}

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

.slot-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.slot-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

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

.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
}

.jackpot-badge {
    background: var(--gold-gradient);
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: rotate(-5deg);
    transition: var(--transition);
}

.slot-image:hover .jackpot-badge {
    transform: rotate(0) scale(1.1);
}

.jackpot-badge i {
    color: #000;
    font-size: 1.2rem;
}

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

.info-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.info-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

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

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

.slot-benefits {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.slot-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    border-radius: 50%;
}

.benefits-text {
    flex: 1;
    min-width: 300px;
}

.benefits-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.benefits-text p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.benefits-list {
    flex: 1;
    min-width: 300px;
}

.benefits-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--light-text);
    padding: 10px 15px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

.benefits-list li:hover {
    background-color: rgba(212, 175, 55, 0.2);
    transform: translateX(5px);
}

.benefits-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.slot-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--card-bg), rgba(26, 26, 26, 0.8));
    border-radius: 15px;
    padding: 50px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.slot-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(212, 175, 55, 0.1), transparent 30%);
    animation: rotate 10s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.slot-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slot-cta p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.slot-cta .btn {
    position: relative;
    z-index: 1;
    min-width: 220px;
}

@media (max-width: 992px) {
    .slot-header h2 {
        font-size: 2.4rem;
    }
    
    .slot-main {
        flex-direction: column-reverse;
    }
    
    .slot-image {
        width: 100%;
    }
    
    .info-card {
        flex-direction: column;
    }
    
    .info-icon {
        margin-bottom: 15px;
    }
    
    .slot-benefits {
        padding: 30px;
    }
    
    .benefits-list ul {
        grid-template-columns: 1fr;
    }
    
    .slot-cta {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .slot-header h2 {
        font-size: 2.2rem;
    }
    
    .slot-text p,
    .benefits-text p,
    .slot-cta p {
        font-size: 1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
    
    .slot-cta .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .slot-header h2 {
        font-size: 1.8rem;
    }
    
    .slot-header::after {
        width: 80px;
    }
    
    .info-card,
    .slot-benefits,
    .slot-cta {
        padding: 25px 20px;
    }
    
    .benefits-list li {
        padding: 8px 12px;
    }
}

/* Mobile Casino Section */
.mobile-casino-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.mobile-casino-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.mobile-casino-section .container {
    position: relative;
    z-index: 2;
}

.mobile-casino-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.mobile-casino-header h2 {
    font-size: 2.8rem;
    text-align: center;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
}

.mobile-casino-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
}

.mobile-casino-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.mobile-casino-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-text);
}

.mobile-casino-intro p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.mobile-casino-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.mobile-device {
    position: relative;
    width: 300px;
    height: 600px;
    perspective: 1000px;
}

.device-frame {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background: #111;
    border: 8px solid #333;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.mobile-device:hover .device-frame {
    transform: rotateY(-5deg) rotateX(2deg);
}

.device-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.device-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.device-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background-color: #111;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.mobile-casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 600px;
}

.feature-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 150px;
    text-align: center;
}

.circle-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.circle-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(212, 175, 55, 0.3), transparent 30%);
    animation: rotate 10s linear infinite;
    z-index: 0;
}

.circle-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.feature-circle:hover .circle-icon {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.feature-circle p {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 500;
}

.mobile-casino-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.details-column {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

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

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

.detail-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-text);
    position: relative;
    z-index: 1;
}

.detail-card p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.mobile-casino-promo {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.mobile-casino-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
}

.promo-content {
    flex: 2;
    min-width: 300px;
}

.promo-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 20px;
}

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

.promo-badge {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-content {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: rotate(15deg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.badge-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.2), transparent 30%);
    animation: rotate 10s linear infinite;
}

.badge-content i {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 5px;
}

.badge-content span {
    font-size: 1.2rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 5px;
}

.badge-content strong {
    font-size: 2.5rem;
    color: #000;
    font-weight: 800;
}

.promo-badge:hover .badge-content {
    transform: rotate(0) scale(1.1);
}

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

.mobile-casino-conclusion p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.mobile-casino-conclusion p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.mobile-casino-conclusion .btn {
    display: inline-block;
    min-width: 220px;
}

@media (max-width: 992px) {
    .mobile-casino-header h2 {
        font-size: 2.4rem;
    }
    
    .mobile-device {
        width: 250px;
        height: 500px;
    }
    
    .mobile-casino-features {
        max-width: 100%;
    }
    
    .feature-circle {
        width: 120px;
    }
    
    .circle-icon {
        width: 70px;
        height: 70px;
    }
    
    .circle-icon i {
        font-size: 1.8rem;
    }
    
    .mobile-casino-promo {
        padding: 30px;
    }
    
    .badge-content {
        width: 150px;
        height: 150px;
    }
    
    .badge-content i {
        font-size: 2rem;
    }
    
    .badge-content span {
        font-size: 1rem;
    }
    
    .badge-content strong {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-casino-header h2 {
        font-size: 2.2rem;
    }
    
    .mobile-casino-intro p,
    .detail-card p,
    .promo-content p,
    .mobile-casino-conclusion p {
        font-size: 1rem;
    }
    
    .mobile-device {
        width: 200px;
        height: 400px;
    }
    
    .device-frame {
        border-radius: 30px;
        border-width: 6px;
    }
    
    .device-notch {
        width: 80px;
        height: 20px;
    }
    
    .feature-circle {
        width: 100px;
    }
    
    .circle-icon {
        width: 60px;
        height: 60px;
    }
    
    .circle-icon i {
        font-size: 1.5rem;
    }
    
    .feature-circle p {
        font-size: 0.8rem;
    }
    
    .mobile-casino-promo {
        padding: 25px;
    }
    
    .badge-content {
        width: 120px;
        height: 120px;
    }
    
    .badge-content i {
        font-size: 1.5rem;
    }
    
    .badge-content span {
        font-size: 0.9rem;
    }
    
    .badge-content strong {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .mobile-casino-header h2 {
        font-size: 1.8rem;
    }
    
    .mobile-casino-intro p {
        font-size: 0.95rem;
    }
    
    .mobile-device {
        transform: scale(0.9);
    }
    
    .mobile-casino-features {
        gap: 15px;
    }
    
    .feature-circle {
        width: 90px;
    }
    
    .circle-icon {
        width: 50px;
        height: 50px;
    }
    
    .circle-icon i {
        font-size: 1.3rem;
    }
    
    .detail-card {
        padding: 20px;
    }
    
    .mobile-casino-promo {
        padding: 20px;
    }
    
    .badge-content {
        width: 100px;
        height: 100px;
    }
    
    .badge-content i {
        font-size: 1.2rem;
    }
    
    .badge-content span {
        font-size: 0.8rem;
    }
    
    .badge-content strong {
        font-size: 1.3rem;
    }
}

/* Why Choose Section */
.why-choose-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.why-choose-section .container {
    position: relative;
    z-index: 2;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 40px;
}

.why-choose-header h2 {
    font-size: 2.8rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

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

.why-choose-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-text);
}

.why-choose-intro p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.reasons-container {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.reasons-timeline {
    width: 100px;
    position: relative;
    padding-top: 50px;
}

.timeline-track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        var(--primary-color) 10%, 
        var(--primary-color) 90%, 
        transparent 100%);
    transform: translateX(-50%);
}

.timeline-points {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.timeline-point {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.point-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.timeline-point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.timeline-point:hover .point-number {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
}

.timeline-point:hover::before {
    opacity: 1;
}

.reasons-content {
    flex: 1;
    padding-left: 30px;
}

.reason-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 3px solid var(--primary-color);
    display: flex;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    transform: translateX(0);
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.reason-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.reason-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.reason-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(212, 175, 55, 0.3), transparent 30%);
    animation: rotate 10s linear infinite;
}

.reason-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.reason-details {
    flex: 1;
}

.reason-details h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.reason-details p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 15px;
}

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

.reason-details p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.why-choose-conclusion {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.why-choose-conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 70%);
}

.conclusion-content {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
}

.conclusion-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 15px;
}

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

.conclusion-content p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.conclusion-cta {
    position: relative;
    z-index: 1;
}

.conclusion-cta .btn {
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.conclusion-cta .btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.2), transparent 30%);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

@media (max-width: 992px) {
    .why-choose-header h2 {
        font-size: 2.4rem;
    }
    
    .reasons-container {
        flex-direction: column;
    }
    
    .reasons-timeline {
        width: 100%;
        height: 80px;
        padding-top: 0;
        margin-bottom: 30px;
    }
    
    .timeline-track {
        top: 50%;
        left: 0;
        right: 0;
        width: 100%;
        height: 3px;
        transform: translateY(-50%);
        background: linear-gradient(to right, 
            transparent 0%, 
            var(--primary-color) 10%, 
            var(--primary-color) 90%, 
            transparent 100%);
    }
    
    .timeline-points {
        flex-direction: row;
        align-items: center;
    }
    
    .timeline-point {
        margin: 0;
    }
    
    .reasons-content {
        padding-left: 0;
    }
    
    .reason-card {
        margin-bottom: 20px;
    }
    
    .reason-card:hover {
        transform: translateY(-5px);
    }
    
    .why-choose-conclusion {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .why-choose-header h2 {
        font-size: 2.2rem;
    }
    
    .why-choose-intro p {
        font-size: 1.1rem;
    }
    
    .reason-details h3 {
        font-size: 1.3rem;
    }
    
    .reason-details p {
        font-size: 1rem;
    }
    
    .conclusion-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .why-choose-header h2 {
        font-size: 1.8rem;
    }
    
    .why-choose-intro p {
        font-size: 1rem;
    }
    
    .timeline-point {
        width: auto;
    }
    
    .point-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .reason-card {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .reason-icon {
        margin-bottom: 10px;
    }
    
    .why-choose-conclusion {
        padding: 25px;
    }
    
    .conclusion-content p {
        font-size: 1rem;
    }
}

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

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.security-section .container {
    position: relative;
    z-index: 2;
}

.security-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.security-header h2 {
    font-size: 2.8rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.security-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
}

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

.security-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.security-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.security-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 20px;
}

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

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

.security-visual {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-shield {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-outer {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    animation: pulse 3s infinite alternate;
}

.shield-inner {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.shield-inner i {
    font-size: 4rem;
    color: #000;
}

.shield-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
}

.shield-rays::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: conic-gradient(
        transparent 0deg,
        rgba(212, 175, 55, 0.1) 10deg,
        transparent 20deg,
        transparent 30deg,
        rgba(212, 175, 55, 0.1) 40deg,
        transparent 50deg,
        transparent 60deg,
        rgba(212, 175, 55, 0.1) 70deg,
        transparent 80deg,
        transparent 90deg,
        rgba(212, 175, 55, 0.1) 100deg,
        transparent 110deg,
        transparent 120deg,
        rgba(212, 175, 55, 0.1) 130deg,
        transparent 140deg,
        transparent 150deg,
        rgba(212, 175, 55, 0.1) 160deg,
        transparent 170deg,
        transparent 180deg,
        rgba(212, 175, 55, 0.1) 190deg,
        transparent 200deg,
        transparent 210deg,
        rgba(212, 175, 55, 0.1) 220deg,
        transparent 230deg,
        transparent 240deg,
        rgba(212, 175, 55, 0.1) 250deg,
        transparent 260deg,
        transparent 270deg,
        rgba(212, 175, 55, 0.1) 280deg,
        transparent 290deg,
        transparent 300deg,
        rgba(212, 175, 55, 0.1) 310deg,
        transparent 320deg,
        transparent 330deg,
        rgba(212, 175, 55, 0.1) 340deg
    );
    animation: rotate 20s linear infinite;
}

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

.security-feature-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.security-feature-card:nth-child(odd) {
    flex-direction: row;
}

.security-feature-card:nth-child(even) {
    flex-direction: row-reverse;
}

.security-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

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

.security-feature-card:hover::before {
    opacity: 1;
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 15px;
    background: var(--gold-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.feature-card-icon i {
    font-size: 2rem;
    color: #000;
}

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

.feature-card-content {
    flex: 1;
}

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

.feature-card-content p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.security-benefits {
    margin: 20px 0;
}

.benefits-hexagons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}

.hexagon-item {
    position: relative;
    width: 200px;
    height: 230px;
    margin: 0 15px;
}

.hexagon {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--card-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

.hexagon::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.hexagon:hover {
    transform: translateY(-10px);
}

.hexagon:hover::before {
    opacity: 1;
}

.hexagon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.hexagon span {
    font-size: 0.95rem;
    color: var(--light-text);
    font-weight: 500;
    line-height: 1.4;
}

.security-conclusion {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.security-conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 70%);
}

.security-conclusion p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.security-conclusion p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.security-conclusion .btn {
    position: relative;
    z-index: 1;
    min-width: 220px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    }
    100% {
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
    }
}

@media (max-width: 992px) {
    .security-header h2 {
        font-size: 2.4rem;
    }
    
    .security-main {
        flex-direction: column;
    }
    
    .security-text {
        max-width: 100%;
    }
    
    .security-visual {
        max-width: 100%;
    }
    
    .security-shield {
        width: 220px;
        height: 220px;
    }
    
    .shield-outer {
        width: 160px;
        height: 160px;
    }
    
    .shield-inner {
        width: 100px;
        height: 100px;
    }
    
    .shield-inner i {
        font-size: 3.5rem;
    }
    
    .security-feature-card {
        padding: 20px;
    }
    
    .feature-card-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    .feature-card-icon i {
        font-size: 1.8rem;
    }
    
    .security-conclusion {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .security-header h2 {
        font-size: 2.2rem;
    }
    
    .security-text p,
    .benefits-text p,
    .security-conclusion p {
        font-size: 1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
    
    .security-conclusion .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .security-header h2 {
        font-size: 1.8rem;
    }
    
    .security-header h2::after {
        width: 80px;
    }
    
    .security-text p {
        font-size: 0.95rem;
    }
    
    .security-shield {
        width: 180px;
        height: 180px;
    }
    
    .shield-outer {
        width: 120px;
        height: 120px;
    }
    
    .shield-inner {
        width: 100px;
        height: 100px;
    }
    
    .shield-inner i {
        font-size: 3rem;
    }
    
    .security-feature-card {
        padding: 15px;
    }
    
    .security-conclusion {
        padding: 25px;
    }
    
    .security-conclusion p {
        font-size: 1rem;
    }
}
