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

:root {
    --primary-color: #00c4ff;
    --secondary-color: #7000ff;
    --accent-color: #ff00aa;
    --dark-bg: #0f0f1a;
    --darker-bg: #070712;
    --card-bg: #161625;
    --light-text: #ffffff;
    --gray-text: #a0a0a0;
    --header-height: 80px;
    --gradient-bg: linear-gradient(135deg, var(--darker-bg) 0%, #1a1a2e 100%);
    --button-gradient: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --card-gradient: linear-gradient(135deg, rgba(22, 22, 37, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
    --glow-shadow: 0 0 15px rgba(0, 196, 255, 0.5);
}

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--button-gradient);
    border-radius: 3px;
}

section h2 {
    width: 100%;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

.responsive-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.responsive-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

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

/* Header Styles */
header {
    background-color: rgba(7, 7, 18, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(7, 7, 18, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

header.scrolled .logo span {
    font-size: 1.8rem;
}

header.scrolled .logo span i {
    font-size: 1.5rem;
}

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

.logo span {
    color: var(--light-text);
    margin-bottom: 0;
    font-size: 2.2rem;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo a {
    text-decoration: none;
}

.logo span i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.8rem;
    animation: spin 6s linear infinite;
    text-shadow: var(--glow-shadow);
}

.logo-text {
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-highlight {
    color: var(--accent-color);
    position: relative;
}

.logo-highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    bottom: 0;
    left: 0;
    border-radius: 2px;
    box-shadow: var(--glow-shadow);
}

.logo span:hover {
    transform: scale(1.05);
}

.logo span:hover i {
    animation: bounce 0.5s ease infinite alternate;
}

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

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-5px);
    }
}

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

nav ul li {
    position: relative;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    transition: width 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
}

.mobile-menu-btn:hover {
    color: #ffd700;
}

/* Main Content Sections */
main {
    margin-top: var(--header-height);
    padding-bottom: 80px; /* Space for sticky buttons */
}

section {
    padding: 5rem 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: rgba(10, 10, 20, 0.5);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(7, 7, 18, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%), url('0114_3_a-photo-of-a-group-of-very-sexy-asian-wo_p-Gx11V6Qt-3H2eebZgN-A_x9fNRv4fTUy7ViJxVA65lg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 196, 255, 0.1), transparent 50%);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(112, 0, 255, 0.1), transparent 50%);
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    background: linear-gradient(90deg, var(--light-text), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-content h1::after {
    left: 0;
    transform: none;
}

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

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(0, 196, 255, 0.3);
    border-radius: 20px;
    z-index: -1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.primary-btn {
    color: white;
    box-shadow: 0 5px 15px rgba(0, 196, 255, 0.3);
}

.primary-btn::before {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.primary-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 196, 255, 0.4);
}

.primary-btn:hover::before {
    transform: scaleX(1.1) scaleY(1.2);
    opacity: 0.8;
}

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

.secondary-btn::before {
    opacity: 0;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.secondary-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 196, 255, 0.4);
    border-color: transparent;
}

.secondary-btn:hover::before {
    opacity: 1;
}

/* About Section */
.about-section .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

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

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    z-index: -1;
}

.about-content {
    flex: 1;
}

.features {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    background: var(--card-gradient);
    padding: 1.8rem 1.5rem;
    border-radius: 15px;
    flex: 1;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 196, 255, 0.2);
}

.feature i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 1.2rem;
}

/* Games Section */
.games-section {
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.1), transparent 70%);
    border-radius: 50%;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.game-card {
    background: var(--card-gradient);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 196, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

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

.game-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 1.2rem;
}

.games-image {
    position: relative;
}

.games-image::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border: 1px dashed rgba(0, 196, 255, 0.3);
    border-radius: 15px;
    z-index: -1;
}

/* Promotion Section */
.promotion-section {
    position: relative;
    overflow: hidden;
}

.promotion-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 170, 0.1), transparent 70%);
    border-radius: 50%;
}

.promotions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.promo-card {
    background: var(--card-gradient);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.7;
}

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

.promo-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 1.2rem;
}

.promo-card .btn {
    margin-top: 1.5rem;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

.promo-card:nth-child(1) .btn::before {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.promo-card:nth-child(2) .btn::before {
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.promo-card:nth-child(3) .btn::before {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

/* Contact Section */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 196, 255, 0.05), transparent 70%);
    border-radius: 50%;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 196, 255, 0.2);
}

.contact-item i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 1.2rem;
}

/* Footer Styles */
footer {
    background-color: var(--darker-bg);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-logo h2 {
    color: var(--light-text);
    text-align: left;
    margin-bottom: 1rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
}

.footer-logo h2 i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.6rem;
    text-shadow: var(--glow-shadow);
}

.footer-links h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.footer-links ul li a:hover::before {
    transform: translateX(5px);
}

.footer-social h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: var(--button-gradient);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: transparent;
}

.social-icons i {
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-text);
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: rgba(7, 7, 18, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: row; /* Always keep buttons in a row */
}

.sticky-btn {
    flex: 1;
    padding: 12px 10px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    margin: 0 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-btn i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.5s ease;
    border-radius: 8px;
}

.login-btn {
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-btn::before {
    background: linear-gradient(135deg, rgba(22, 22, 37, 0.8), rgba(26, 26, 46, 0.8));
}

.register-btn {
    color: white;
}

.register-btn::before {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.free-credit-btn {
    color: white;
}

.free-credit-btn::before {
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

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

.sticky-btn:hover::before {
    filter: brightness(1.2);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-image img, .about-image img, .games-image img {
    animation: float 6s ease-in-out infinite;
}

/* Responsive Styles */
@media (max-width: 1150px) {
    nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - var(--header-height));
        background: rgba(10, 10, 20, 0.95);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 2rem;
        overflow-y: auto;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.1rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    header .container {
        justify-content: space-between;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-section .container,
    .about-section .container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .hero-image,
    .about-image {
        width: 100%;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promotions {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo,
    .footer-links,
    .footer-social {
        text-align: center;
    }
    
    .footer-logo h2::after,
    .footer-links h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul li a {
        justify-content: center;
    }
    
    .footer-links ul li a::before {
        display: none;
    }
    
    .footer-links ul li a:hover {
        padding-left: 0;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        flex-direction: column;
    }
    
    .promotions {
        grid-template-columns: 1fr;
    }
    
    .sticky-btn {
        font-size: 0.9rem;
        padding: 10px 5px;
    }
}

/* Casino World Section */
.casino-world-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.95) 0%, rgba(25, 25, 45, 0.95) 100%);
    padding: 6rem 0;
}

.casino-world-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 170, 0.08), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.casino-world-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 196, 255, 0.08), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    display: inline-block;
    font-size: 2.2rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    position: relative;
    padding: 0 1rem;
}

.section-header h2::before,
.section-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.section-header h2::before {
    left: -40px;
}

.section-header h2::after {
    right: -40px;
    background: linear-gradient(90deg, transparent, var(--accent-color));
}

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

.content-wrapper {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.text-content {
    flex: 2;
    background: rgba(22, 22, 37, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.text-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.text-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.highlight-box {
    flex: 1;
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.2), rgba(255, 0, 170, 0.2));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('0058_2_a-seductive-asian-woman-with-a-pink-dres_LoKekks-Qr-VuCJsYqLjsg_DW8cclvCRa6gzynwU-dYxQ_cover.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
    filter: blur(8px);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.5);
}

.highlight-icon i {
    font-size: 2.5rem;
    color: white;
}

.highlight-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover::after {
    opacity: 1;
}

.feature-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 1.2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.cta-container {
    background: linear-gradient(135deg, rgba(0, 196, 255, 0.1), rgba(112, 0, 255, 0.1));
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 196, 255, 0.05), transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

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

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.glow-btn {
    position: relative;
    z-index: 1;
    overflow: visible;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 50px;
    z-index: -2;
    opacity: 0.5;
    filter: blur(15px);
    transition: all 0.3s ease;
}

.glow-btn:hover::after {
    opacity: 0.8;
    filter: blur(20px);
}

/* Responsive styles for Casino World Section */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h2::before,
    .section-header h2::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-container {
        padding: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
}

/* Safe Experience Section Styles */
.safe-experience-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--darker-bg);
    overflow: hidden;
}

.safe-experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="2" cy="2" r="1" fill="%23ffffff" opacity="0.05"/></svg>');
    z-index: 0;
}

.safe-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.safe-header h2 {
    display: inline-block;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--light-text);
}

.safe-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 3px;
}

.safe-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.safe-shield {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.shield-icon {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.2) 0%, rgba(0, 196, 255, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 30px rgba(112, 0, 255, 0.3);
    animation: pulse 4s infinite ease-in-out;
}

.shield-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px dashed rgba(0, 196, 255, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.shield-icon i {
    font-size: 5rem;
    color: var(--light-text);
    text-shadow: 0 0 20px rgba(0, 196, 255, 0.8);
}

.safe-paragraphs {
    flex: 1;
    background: rgba(15, 15, 30, 0.5);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.safe-paragraphs p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    position: relative;
    padding-left: 1rem;
}

.safe-paragraphs p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.safe-paragraphs p:last-child {
    margin-bottom: 0;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.security-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(22, 22, 37, 0.7) 0%, rgba(26, 26, 46, 0.7) 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 196, 255, 0.05) 0%, rgba(112, 0, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

.security-icon {
    flex: 0 0 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon i {
    font-size: 1.8rem;
    color: white;
}

.security-text {
    flex: 1;
}

.security-text p {
    margin: 0;
    line-height: 1.7;
}

.safe-bottom {
    position: relative;
    z-index: 1;
}

.safe-bottom-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.safe-bottom-left {
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 0, 170, 0.1) 0%, rgba(112, 0, 255, 0.1) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.credit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 0, 170, 0.5);
}

.credit-icon i {
    font-size: 2.5rem;
    color: white;
}

.safe-bottom-left p {
    margin: 0;
    line-height: 1.7;
}

.safe-bottom-right {
    flex: 1;
    background: rgba(15, 15, 30, 0.5);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.safe-bottom-right::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 196, 255, 0.1), transparent 70%);
    border-radius: 50%;
}

.safe-bottom-right p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.safe-bottom-right p:last-child {
    margin-bottom: 0;
}

.safe-cta {
    text-align: center;
    margin-top: 3rem;
}

.pulse-btn {
    position: relative;
    z-index: 1;
}

.pulse-btn::before {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(112, 0, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(112, 0, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(112, 0, 255, 0);
    }
}

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

/* Responsive styles for Safe Experience Section */
@media (max-width: 992px) {
    .safe-content {
        flex-direction: column;
    }
    
    .safe-shield {
        margin-bottom: 2rem;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .safe-bottom-content {
        flex-direction: column;
    }
}

/* Bonus and Promotion Section Styles */
.bonus-promotion-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--darker-bg), rgba(15, 15, 30, 0.95));
    overflow: hidden;
}

.bonus-promotion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path d="M0 20 L40 20 M20 0 L20 40" stroke="%23ffffff" stroke-width="0.5" opacity="0.03"/></svg>');
    z-index: 0;
}

.bonus-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.bonus-header h2 {
    display: inline-block;
    font-size: 2.2rem;
    position: relative;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-header h2::before,
.bonus-header h2::after {
    content: '';
    position: absolute;
    height: 3px;
    bottom: -15px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.bonus-header h2::before {
    width: 60%;
    left: 20%;
    border-radius: 3px;
}

.bonus-header h2::after {
    width: 30%;
    left: 35%;
    bottom: -25px;
    border-radius: 3px;
}

.bonus-intro {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.bonus-intro-text {
    flex: 2;
    background: rgba(15, 15, 30, 0.6);
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-intro-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-color), var(--primary-color));
    border-radius: 5px 0 0 5px;
}

.bonus-intro-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
}

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

.bonus-intro-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.bonus-intro-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-image-container {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 0, 170, 0.1) 0%, rgba(0, 196, 255, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: rotate(45deg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float-rotate 8s infinite ease-in-out;
}

.bonus-image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed rgba(255, 0, 170, 0.2);
    border-radius: 25px;
    animation: rotate-reverse 15s linear infinite;
}

.bonus-image-container i {
    font-size: 5rem;
    color: var(--accent-color);
    transform: rotate(-45deg);
    text-shadow: 0 0 20px rgba(255, 0, 170, 0.5);
}

.bonus-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(22, 22, 37, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.bonus-card-header {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-card:nth-child(2) .bonus-card-header {
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.bonus-card:nth-child(3) .bonus-card-header {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.bonus-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bonus-card:hover .bonus-card-header::before {
    opacity: 1;
}

.bonus-card-header i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.8rem;
}

.bonus-card-header h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0;
}

.bonus-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bonus-card-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--gray-text);
}

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

.bonus-card-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.bonus-list-section {
    background: rgba(15, 15, 30, 0.6);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.bonus-list-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 196, 255, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.bonus-list-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bonus-list-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 196, 255, 0.3);
}

.bonus-list-icon i {
    font-size: 2rem;
    color: white;
}

.bonus-list-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--light-text);
}

.bonus-list-content {
    padding-left: 2rem;
}

.bonus-list-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.bonus-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 3rem;
}

.bonus-list li {
    position: relative;
    padding-left: 2rem;
    line-height: 1.7;
    font-weight: 500;
}

.bonus-list-marker {
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: block;
}

.bonus-list li:nth-child(2) .bonus-list-marker {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.bonus-list li:nth-child(3) .bonus-list-marker {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.bonus-list li:nth-child(4) .bonus-list-marker {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.bonus-conclusion {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 196, 255, 0.1), rgba(255, 0, 170, 0.1));
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.bonus-conclusion::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 170, 0.05), transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: -1;
}

.bonus-conclusion p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.bonus-conclusion strong {
    color: var(--primary-color);
    font-weight: 600;
}

.shine-btn {
    position: relative;
    overflow: hidden;
}

.shine-btn::before {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.shine-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
    z-index: 2;
}

@keyframes shine {
    0% {
        left: -100%;
        top: -100%;
    }
    20%, 100% {
        left: 100%;
        top: 100%;
    }
}

@keyframes float-rotate {
    0% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(-15px);
    }
    100% {
        transform: rotate(45deg) translateY(0);
    }
}

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

/* Responsive styles for Bonus Promotion Section */
@media (max-width: 992px) {
    .bonus-intro {
        flex-direction: column;
    }
    
    .bonus-intro-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .bonus-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bonus-cards-container {
        grid-template-columns: 1fr;
    }
    
    .bonus-list-section {
        padding: 2rem;
    }
    
    .bonus-conclusion {
        padding: 2rem;
    }
    
    .bonus-conclusion p {
        font-size: 1.1rem;
    }
}

/* Platform Access Section */
.platform-access-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0c0e1f 0%, #1a1c2d 100%);
    overflow: hidden;
}

.platform-access-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(76, 0, 255, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 90% 90%, rgba(0, 204, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

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

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

.access-header h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.access-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4c00ff, #00ccff, transparent);
}

/* Device Selector */
.access-devices {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.device-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.device-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.device-icon i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.device-icon.active {
    background: rgba(76, 0, 255, 0.2);
    border-color: #4c00ff;
    box-shadow: 0 0 15px rgba(76, 0, 255, 0.5);
}

.device-icon.active i {
    color: #fff;
}

.device-icon:hover {
    transform: translateY(-5px);
}

.device-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.device-icon.active + .device-label {
    color: #fff;
    font-weight: 500;
}

/* Main Content */
.access-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.access-main-content {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.access-text {
    flex: 1;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 4px solid #4c00ff;
}

.access-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.access-text strong {
    color: #00ccff;
    font-weight: 600;
}

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

/* Phone Mockup */
.phone-mockup {
    width: 220px;
    height: 400px;
    background: #111;
    border-radius: 30px;
    padding: 10px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: #000;
    border-radius: 0 0 15px 15px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1c2d, #0c0e1f);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.app-logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(76, 0, 255, 0.8);
    letter-spacing: 2px;
}

.app-login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-field {
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.form-field::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

.login-button {
    height: 45px;
    background: linear-gradient(90deg, #4c00ff, #00ccff);
    border-radius: 8px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.login-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Steps Section */
.access-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.step-item:nth-child(1) {
    border-left-color: #ff6b6b;
}

.step-item:nth-child(2) {
    border-left-color: #feca57;
}

.step-item:nth-child(3) {
    border-left-color: #1dd1a1;
}

.step-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.step-item:nth-child(1) .step-number {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.step-item:nth-child(2) .step-number {
    background: rgba(254, 202, 87, 0.2);
    color: #feca57;
}

.step-item:nth-child(3) .step-number {
    background: rgba(29, 209, 161, 0.2);
    color: #1dd1a1;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Support Section */
.access-support {
    display: flex;
    gap: 20px;
    background: rgba(76, 0, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(76, 0, 255, 0.2);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: rgba(76, 0, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-icon i {
    font-size: 24px;
    color: #4c00ff;
}

.support-content {
    flex: 1;
}

.support-content h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.support-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}

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

/* CTA Section */
.access-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.wave-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #4c00ff, #00ccff);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(76, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.wave-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: all 0.6s ease;
}

.wave-btn:hover::before {
    transform: translateX(100%);
}

.wave-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23ffffff'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23ffffff'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23ffffff'/%3E%3C/svg%3E") repeat-x;
    background-size: 600px 8px;
    animation: wave 10s linear infinite;
    opacity: 0.5;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .access-main-content {
        flex-direction: column;
    }
    
    .access-visual {
        order: -1;
        margin-bottom: 20px;
    }
    
    .access-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .access-cta .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .access-devices {
        gap: 15px;
    }
    
    .device-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-item {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 10px;
    }
    
    .access-support {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .support-icon {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .access-header h2 {
        font-size: 2rem;
    }
    
    .access-devices {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 440px) {
    .sticky-buttons {
        padding: 10px;
        gap: 5px;
    }
    
    .sticky-btn {
        margin: 0 3px;
        padding: 10px 5px;
        flex-direction: column; /* Stack text and icon vertically */
        font-size: 0.85rem;
    }
    
    .sticky-btn i {
        margin-left: 0;
        margin-top: 5px;
        font-size: 1.2rem;
    }
    
    main {
        padding-bottom: 100px; /* Adjusted padding since buttons remain in a row */
    }
}

/* Selection Guide Section */
.selection-guide-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(to bottom, #0f1423, #1c1f36);
    overflow: hidden;
}

.selection-guide-section::before {
    content: '';
    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='%23ffffff' 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"),
        radial-gradient(circle at 10% 90%, rgba(255, 215, 0, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 90% 10%, rgba(0, 191, 255, 0.05) 0%, transparent 60%);
    z-index: 1;
}

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

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

.guide-header h2 {
    color: #fff;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.guide-header h2::before,
.guide-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700);
}

.guide-header h2::before {
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #ffd700, #00bfff);
}

.guide-header h2::after {
    left: 0;
    width: 100%;
    height: 1px;
    bottom: -5px;
    background: linear-gradient(90deg, #ffd700, #00bfff);
    opacity: 0.5;
}

.guide-intro {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.guide-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #ffd700, #00bfff);
    border-radius: 15px 0 0 15px;
}

.guide-intro p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: justify;
}

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

.guide-intro strong {
    color: #ffd700;
    font-weight: 600;
}

.guide-criteria {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.criteria-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.criteria-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.criteria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.criteria-item:hover::before {
    opacity: 1;
}

.criteria-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.criteria-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(0, 191, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.criteria-item:hover .criteria-icon::after {
    opacity: 1;
}

.criteria-icon i {
    font-size: 24px;
    color: #fff;
    position: relative;
    z-index: 1;
}

#security .criteria-icon i {
    color: #ffd700;
}

#games .criteria-icon i {
    color: #ff6b6b;
}

#mobile .criteria-icon i {
    color: #00bfff;
}

#service .criteria-icon i {
    color: #1dd1a1;
}

.criteria-content {
    flex: 1;
}

.criteria-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.criteria-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, transparent);
}

.criteria-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.guide-comparison {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-header {
    margin-bottom: 20px;
    text-align: center;
}

.comparison-header h3 {
    color: #fff;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.comparison-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #00bfff);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.table-row {
    display: flex;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.table-row:hover:not(.table-header) {
    background: rgba(255, 255, 255, 0.05);
}

.table-header {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.table-cell {
    flex: 1;
    padding: 15px;
    color: #fff;
    display: flex;
    align-items: center;
}

.table-header .table-cell {
    color: #ffd700;
}

.table-cell i {
    margin-right: 8px;
}

.fa-check-circle {
    color: #1dd1a1;
}

.fa-minus-circle {
    color: #ff6b6b;
}

.fa-times-circle {
    color: #ff6b6b;
}

.fa-question-circle {
    color: #feca57;
}

.guide-conclusion {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.guide-conclusion::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #ffd700, #00bfff, transparent);
    border-radius: 5px;
}

.guide-conclusion p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.7;
}

.guide-conclusion p:last-of-type {
    margin-bottom: 30px;
}

.guide-conclusion strong {
    color: #ffd700;
    font-weight: 600;
}

.guide-cta {
    margin-top: 20px;
}

.spotlight-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #ffd700, #ff9900);
    border: none;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.spotlight-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

.spotlight-btn:hover::before {
    opacity: 0.3;
    transform: scale(1);
}

.spotlight-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.spotlight-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .guide-criteria {
        grid-template-columns: 1fr;
    }
    
    .guide-comparison {
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 600px;
    }
}

@media (max-width: 768px) {
    .criteria-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .criteria-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .guide-intro::before {
        width: 100%;
        height: 5px;
        border-radius: 15px 15px 0 0;
    }
    
    .guide-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .table-row {
        flex-direction: column;
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .table-header {
        display: none;
    }
    
    .table-cell {
        padding: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .table-cell:first-child {
        background: rgba(255, 255, 255, 0.05);
        font-weight: 600;
    }
    
    .table-cell:last-child {
        border-bottom: none;
    }
}
