/* Base Styles & Variables */
:root {
    /* Primary Colors */
    --primary: #e61673;
    --primary-light: #ff4499;
    --secondary: #8c0fe1;
    --accent: #1de8f5;
    
    /* Background Colors */
    --bg-dark: #0a0924;
    --bg-card: #131340;
    --bg-card-hover: #1c1b5a;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a3a8c3;
    --text-muted: #5d5f79;
    
    /* Other */
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 4px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

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

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

.btn-accent {
    background: var(--accent);
    color: var(--bg-dark);
    font-weight: 700;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(10, 9, 36, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo .logo-wrapper {
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 0;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(230, 22, 115, 0.5);
    position: relative;
    transition: all 0.3s ease;
}

.logo span {
    color: var(--primary);
    position: relative;
}

.logo a {
    display: block;
    text-decoration: none;
    color: white;
}

.logo-inner {
    position: relative;
    overflow: hidden;
}

.logo-mask {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(230, 22, 115, 0.3),
        transparent
    );
    animation: logo-shine 3s infinite;
}

@keyframes logo-shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.logo a:hover .logo-wrapper {
    text-shadow: 0 0 15px rgba(230, 22, 115, 0.8), 0 0 10px rgba(230, 22, 115, 0.5);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    position: relative;
}

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

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

.nav-links a:hover::after {
    width: 100%;
}

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

/* Additional styles for mobile navigation */
.nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 9, 36, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
    animation: slideDown 0.3s ease-in-out;
}

.nav-links.mobile-active li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 0;
}

.nav-links.mobile-active li:last-child {
    border-bottom: none;
}

.nav-links.mobile-active a {
    width: 100%;
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

.nav-links.mobile-active a:hover {
    padding-left: 0.5rem;
    transition: all 0.3s ease;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark), #0d0d2c);
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    color: var(--text-secondary);
}

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

.hero-geometric {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-1 {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(230, 22, 115, 0.1), rgba(29, 232, 245, 0.1));
    animation: morph 15s linear infinite alternate;
}

.shape-2 {
    bottom: -150px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, rgba(140, 15, 225, 0.1), rgba(29, 232, 245, 0.1));
    animation: morph 20s linear infinite alternate-reverse;
}

.shape-3 {
    top: 40%;
    right: 20%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(230, 22, 115, 0.1), rgba(140, 15, 225, 0.1));
    animation: morph 25s linear infinite alternate;
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Gaming System Section */
.gaming-system {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-dark), #0e0e35);
    position: relative;
    overflow: hidden;
}

.gaming-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gaming-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.gaming-title {
    font-size: 2.5rem;
    text-transform: none;
    position: relative;
    display: inline-block;
}

.gaming-title::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: -15px;
    left: 0;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.gaming-title span {
    color: var(--primary);
}

.gaming-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.gaming-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.gaming-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gaming-feature {
    background: rgba(19, 19, 64, 0.5);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border-left: 4px solid var(--accent);
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.gaming-feature:hover {
    transform: translateY(-5px);
    background: rgba(19, 19, 64, 0.8);
}

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

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

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

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

.gaming-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(19, 19, 64, 0.3);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    position: relative;
}

.gaming-cta {
    flex: 0 0 65%;
}

.gaming-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.gaming-cta p strong {
    color: var(--accent);
    font-weight: 600;
}

.gaming-decoration {
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
    height: 100%;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(230, 22, 115, 0.15), rgba(140, 15, 225, 0.15));
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 25%;
    animation: float 6s ease-in-out infinite alternate;
}

.circle-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 35%;
    animation: float 10s ease-in-out infinite alternate-reverse;
}

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

/* Promotion Section */
.promotion {
    padding: 6rem 2rem;
    background: linear-gradient(45deg, #0a0924, #131340);
}

.promo-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 65% 30%;
    gap: 5%;
}

.promo-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.promo-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.promo-buttons {
    margin-top: 2rem;
}

.promo-stats {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.promo-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat .number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

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

/* Games Section */
.games {
    padding: 6rem 2rem;
    background-color: var(--bg-dark);
}

.game-categories {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-card);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.category i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.category span {
    font-weight: 500;
}

.category.active, .category:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.category.active i, .category:hover i,
.category.active span, .category:hover span {
    color: white;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.game-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
}

.game-card .img-container {
    width: 100%;
    overflow: hidden;
}

.game-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.rating {
    color: #ffd700;
    margin-bottom: 1rem;
}

/* Bonus Section */
.bonus {
    padding: 6rem 2rem;
    position: relative;
    background: url('placeholder-image.webp') center/cover no-repeat;
}

.bonus-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 9, 36, 0.85), rgba(19, 19, 64, 0.95));
}

.bonus-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--box-shadow);
}

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

.bonus-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

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

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

.bonus-card.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.bonus-card.highlight p {
    color: rgba(255, 255, 255, 0.8);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background-color: var(--bg-dark);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    background: var(--bg-card);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.feature:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
}

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

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

.feature p {
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0d0d2c, #0a0924);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-method {
    text-align: center;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
}

.contact-method i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: var(--text-secondary);
}

/* Footer */
footer {
    background: #080818;
    padding: 4rem 2rem 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(230, 22, 115, 0.5);
    position: relative;
    transition: all 0.3s ease;
}

.footer-logo span {
    color: var(--primary);
    position: relative;
}

.footer-logo a {
    display: block;
    text-decoration: none;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-logo a:hover h2 {
    text-shadow: 0 0 15px rgba(230, 22, 115, 0.8), 0 0 10px rgba(230, 22, 115, 0.5);
}

.footer-logo p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column a {
    color: var(--text-secondary);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-methods {
    display: flex;
    gap: 1.5rem;
    font-size: 2rem;
    color: var(--text-secondary);
}

.copyright {
    color: var(--text-muted);
    text-align: center;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(10, 9, 36, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.sticky-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    flex: 1;
    max-width: 200px;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 45px;
}

.sticky-btn.login {
    background: var(--secondary);
    color: white;
}

.sticky-btn.register {
    background: var(--primary);
    color: white;
}

.sticky-btn.free-credit {
    background: var(--accent);
    color: var(--bg-dark);
}

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

/* Media Queries */
@media (max-width: 1200px) {
    .promo-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .promo-stats {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .gaming-grid {
        gap: 2rem;
    }
}

@media (max-width: 950px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
    }
    
    .sticky-buttons {
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .sticky-btn {
        max-width: 180px;
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gaming-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gaming-title {
        font-size: 2.2rem;
    }
    
    .gaming-bottom {
        flex-direction: column;
        padding: 2rem;
    }
    
    .gaming-cta {
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }
    
    .gaming-decoration {
        position: relative;
        width: 100%;
        height: 150px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .gaming-title {
        font-size: 1.8rem;
    }
    
    .gaming-feature {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .feature-icon {
        margin-bottom: 0.5rem;
        aspect-ratio: 1/1;
    }
    
    .promo-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .game-categories {
        gap: 1rem;
    }
    
    .category {
        padding: 0.75rem 1rem;
    }
    
    .sticky-buttons {
        gap: 0.5rem;
        padding: 0.6rem;
    }
    
    .sticky-btn {
        font-size: 0.8rem;
        padding: 0.6rem 0.5rem;
        max-width: none;
        min-height: 40px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .gaming-title {
        font-size: 1.6rem;
    }
    
    .gaming-bottom {
        padding: 1.5rem;
    }
    
    .promo-text h2 {
        font-size: 1.6rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .sticky-buttons {
        padding: 0.5rem;
    }
    
    .sticky-btn {
        font-size: 0.7rem;
        padding: 0.5rem 0.3rem;
        min-height: 38px;
        font-weight: 500;
    }
}

@media (max-width: 374px) {
    .sticky-buttons {
        padding: 0.4rem;
        gap: 0.3rem;
    }
    
    .sticky-btn {
        font-size: 0.65rem;
        padding: 0.4rem 0.2rem;
        min-height: 36px;
    }
}

/* Animation Classes */
.game-card, .bonus-card, .feature, .contact-method {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.game-card.animate, .bonus-card.animate, .feature.animate, .contact-method.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Active State */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.nav-links.active li {
    margin-bottom: 1rem;
}

/* Special Promotions Section */
.special-promotions {
    padding: 8rem 2rem 6rem;
    background: linear-gradient(180deg, #0e0e35 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.promo-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, transparent 25%, rgba(230, 22, 115, 0.1) 25%, rgba(230, 22, 115, 0.1) 50%, transparent 50%, transparent 75%, rgba(230, 22, 115, 0.1) 75%);
    background-size: 80px 80px;
    z-index: 1;
    opacity: 0.6;
}

.sp-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sp-header {
    text-align: center;
    margin-bottom: 4rem;
}

.sp-title {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
    color: var(--text-primary);
    padding: 0 2rem 1.5rem;
    border-bottom: 2px dashed rgba(230, 22, 115, 0.3);
}

.sp-title strong {
    color: var(--primary);
}

.sp-content {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.sp-image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.sp-image-container:hover .sp-image {
    transform: scale(1.05);
}

.sp-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: white;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: rotate(15deg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

.sp-badge .lg {
    font-size: 2rem;
    margin: 0.2rem 0;
}

.sp-text-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sp-text-block p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

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

.sp-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 0.5rem 0;
}

.sp-highlight-item {
    background: rgba(140, 15, 225, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    position: relative;
    transition: var(--transition);
    border-bottom: 3px solid var(--secondary);
}

.sp-highlight-item:hover {
    transform: translateY(-5px);
    background: rgba(140, 15, 225, 0.15);
}

.sp-highlight-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: white;
    font-size: 1.2rem;
}

.sp-highlight-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.sp-highlight-item p strong {
    color: var(--accent);
    font-weight: 600;
}

.sp-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(19, 19, 64, 0.3);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.sp-social {
    display: flex;
    gap: 1rem;
}

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

.sp-social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Media Queries for Special Promotions */
@media (max-width: 992px) {
    .sp-content {
        grid-template-columns: 1fr;
    }
    
    .sp-image-container {
        max-height: 350px;
    }
    
    .sp-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .sp-highlights {
        grid-template-columns: 1fr;
    }
    
    .sp-title {
        font-size: 1.8rem;
        padding: 0 1rem 1rem;
    }
    
    .special-promotions {
        padding: 6rem 2rem 4rem;
    }
}

@media (max-width: 576px) {
    .sp-cta {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .sp-badge {
        width: 120px;
        height: 120px;
        top: 10px;
        right: -20px;
    }
    
    .sp-badge .lg {
        font-size: 1.6rem;
    }
}

/* Transaction Section */
.transaction {
    padding: 6rem 2rem;
    background: linear-gradient(45deg, var(--bg-dark), #0d0d32);
    position: relative;
}

.transaction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.transaction-container {
    max-width: 1200px;
    margin: 0 auto;
}

.transaction-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.transaction-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.transaction-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 3px;
}

.transaction-title strong {
    color: var(--accent);
}

.transaction-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.transaction-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

/* Transaction Tabs */
.transaction-tabs {
    background: rgba(13, 13, 50, 0.5);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.tab-headers {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.tab-header {
    flex: 1;
    text-align: center;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    color: var(--text-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tab-header i {
    font-size: 1.2rem;
}

.tab-header:hover {
    color: var(--accent);
}

.tab-header.active {
    color: var(--primary);
}

.tab-header.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
}

.tab-contents {
    position: relative;
    min-height: 300px;
}

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Transaction Steps */
.transaction-steps h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.transaction-steps h3 strong {
    color: var(--primary);
}

.step-list {
    list-style: none;
    counter-reset: steps;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(19, 19, 64, 0.3);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, background 0.3s ease;
}

.step-list li:hover {
    transform: translateX(10px);
    background: rgba(19, 19, 64, 0.6);
}

.step-number {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-info {
    flex: 1;
    padding-top: 0.5rem;
}

.step-info h4 {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
}

.step-info h4 strong {
    color: var(--primary);
    font-weight: 600;
}

.after-steps {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(230, 22, 115, 0.1);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.after-steps strong {
    color: var(--primary);
    font-weight: 600;
}

/* Transaction Promo */
.transaction-promo {
    margin-top: 2rem;
}

.promo-highlight {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: rgba(13, 13, 50, 0.3);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-text {
    padding: 2rem 2rem 2rem 0;
}

.promo-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.promo-text p strong {
    color: var(--accent);
    font-weight: 600;
}

/* Media Queries for Transaction Section */
@media (max-width: 992px) {
    .transaction-title {
        font-size: 2.2rem;
    }
    
    .promo-highlight {
        grid-template-columns: 1fr;
    }
    
    .promo-image {
        max-height: 250px;
    }
    
    .promo-text {
        padding: 0 2rem 2rem;
    }
}

@media (max-width: 768px) {
    .transaction-title {
        font-size: 1.8rem;
    }
    
    .step-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .step-number {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .transaction-title {
        font-size: 1.6rem;
    }
    
    .tab-header {
        flex-direction: column;
        padding: 0.5rem;
    }
    
    .transaction-steps h3 {
        font-size: 1.2rem;
    }
}

/* Slots Variety Section */
.slots-variety {
    padding: 6rem 2rem;
    background: linear-gradient(to right, #0d0d32, #0e0c1f);
    position: relative;
    overflow: hidden;
}

.slots-variety::before,
.slots-variety::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 15, 225, 0.1) 0%, rgba(230, 22, 115, 0.05) 60%, transparent 70%);
    z-index: 0;
}

.slots-variety::before {
    top: -100px;
    left: -100px;
}

.slots-variety::after {
    bottom: -100px;
    right: -100px;
}

.slots-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.slots-header {
    margin-bottom: 3rem;
    text-align: center;
}

.slots-title-wrapper {
    display: inline-block;
    position: relative;
}

.slots-title-wrapper::before,
.slots-title-wrapper::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--accent);
    top: 50%;
}

.slots-title-wrapper::before {
    left: -80px;
}

.slots-title-wrapper::after {
    right: -80px;
}

.slots-title {
    font-size: 2.5rem;
    position: relative;
    color: var(--text-primary);
    margin-bottom: 0;
    display: inline-block;
}

.slots-title strong {
    color: var(--primary);
}

.slots-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Slots Carousel */
.slots-carousel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.carousel-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 1rem;
}

.carousel-item {
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 9, 36, 0.8), transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    text-align: center;
}

.game-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

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

.play-button {
    display: inline-block;
    font-size: 3rem;
    color: white;
    opacity: 0.8;
    transition: var(--transition);
    cursor: pointer;
}

.play-button:hover {
    opacity: 1;
    transform: scale(1.1);
}

.carousel-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    cursor: pointer;
}

.nav-dot.active,
.nav-dot:hover {
    background: white;
}

.carousel-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
}

.arrow {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.arrow:hover {
    background: var(--primary);
}

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

.slot-feature {
    background: linear-gradient(135deg, rgba(19, 19, 64, 0.5), rgba(13, 13, 50, 0.8));
    border-radius: var(--border-radius);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slot-feature:hover {
    transform: translateY(-5px);
}

.slot-feature i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.slot-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: white;
}

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

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

/* Slots Content */
.slots-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.slots-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.slots-boxes {
    display: flex;
    gap: 1.5rem;
}

.slots-box {
    flex: 1;
    background: rgba(19, 19, 64, 0.3);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.slots-box:hover {
    transform: translateY(-5px);
}

.slots-box.highlight {
    background: linear-gradient(to right bottom, var(--secondary), rgba(13, 13, 50, 0.9));
    border: 1px solid rgba(140, 15, 225, 0.3);
}

.box-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.box-header i {
    font-size: 1.2rem;
    color: var(--accent);
}

.box-header h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: white;
}

.box-content {
    padding: 1.2rem;
}

.box-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.box-content p strong {
    color: var(--accent);
    font-weight: 600;
}

.slots-box.highlight .box-content p strong {
    color: var(--accent);
}

.slots-advantages {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.advantage-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(19, 19, 64, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.advantage-item:hover {
    background: rgba(19, 19, 64, 0.5);
}

.advantage-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.advantage-text {
    flex: 1;
}

.advantage-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.advantage-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

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

.slots-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: rgba(19, 19, 64, 0.3);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.slots-action .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.action-info {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
}

.info-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Media Queries for Slots Section */
@media (max-width: 1200px) {
    .slots-grid {
        gap: 2rem;
    }
    
    .slots-title-wrapper::before,
    .slots-title-wrapper::after {
        width: 40px;
    }
    
    .slots-title-wrapper::before {
        left: -60px;
    }
    
    .slots-title-wrapper::after {
        right: -60px;
    }
}

@media (max-width: 992px) {
    .slots-grid {
        grid-template-columns: 1fr;
    }
    
    .slots-title {
        font-size: 2.2rem;
    }
    
    .slots-title-wrapper::before,
    .slots-title-wrapper::after {
        display: none;
    }
    
    .carousel-container {
        max-width: 400px;
        margin: 0 auto 1rem;
    }
    
    .slots-boxes {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .slots-features {
        grid-template-columns: 1fr;
    }
    
    .slots-title {
        font-size: 1.8rem;
    }
    
    .action-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .advantage-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .advantage-text h4 {
        margin-top: 0.5rem;
    }
}

@media (max-width: 576px) {
    .slots-title {
        font-size: 1.5rem;
    }
    
    .slots-action .btn {
        width: 100%;
    }
}

/* Casino Experience Section */
.casino-experience {
    padding: 6rem 0 4rem;
    background: linear-gradient(to bottom, #0c0c30, #090921);
    position: relative;
    overflow: hidden;
}

.casino-experience::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(29, 232, 245, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.casino-experience::after {
    content: '';
    position: absolute;
    left: -10%;
    bottom: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(ellipse, rgba(230, 22, 115, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.experience-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.header-line {
    height: 2px;
    width: 100px;
    background: linear-gradient(to right, transparent, var(--primary));
    margin: 0 1.5rem;
}

.header-line.right {
    background: linear-gradient(to left, transparent, var(--accent));
}

.experience-title {
    font-size: 2.5rem;
    text-align: center;
    white-space: nowrap;
    color: var(--text-primary);
}

.experience-title strong {
    color: var(--primary);
}

.experience-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Diagonal Section */
.diagonal-section {
    position: relative;
    background: linear-gradient(to right, rgba(19, 19, 64, 0.4), rgba(10, 9, 36, 0.4));
    transform: skewY(-3deg);
    padding: 4rem 2rem;
    margin: 0 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.diagonal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.diagonal-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.diagonal-content {
    transform: skewY(3deg);
}

.lead-paragraph {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.lead-paragraph strong {
    color: var(--primary);
    font-weight: 600;
}

.experience-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.preview-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(19, 19, 64, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.preview-card:hover {
    transform: translateY(-5px);
    background: rgba(19, 19, 64, 0.5);
}

.preview-card.reverse {
    flex-direction: row-reverse;
}

.preview-icon {
    flex: 0 0 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #131340, #0c0c30);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(29, 232, 245, 0.2);
    aspect-ratio: 1/1;
}

.preview-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(29, 232, 245, 0.1),
        transparent,
        rgba(29, 232, 245, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 4s infinite linear;
}

@keyframes shimmer {
    from {
        transform: translateX(-100%) rotate(45deg);
    }
    to {
        transform: translateX(100%) rotate(45deg);
    }
}

.preview-icon i {
    font-size: 3rem;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.preview-content {
    flex: 1;
}

.preview-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.preview-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.preview-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

/* Promo Banner */
.promo-banner {
    padding: 0 2rem;
    margin-top: -2rem;
}

.banner-inner {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.banner-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 9, 36, 0.9), rgba(10, 9, 36, 0.7));
    display: flex;
    align-items: center;
    padding: 2rem;
}

.banner-text {
    max-width: 70%;
}

.banner-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.banner-text h3 i {
    color: var(--accent);
}

.banner-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.banner-text p strong {
    color: var(--accent);
    font-weight: 600;
}

/* Features Cards */
.features-cards {
    padding: 0 2rem;
}

.feature-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: linear-gradient(145deg, rgba(19, 19, 64, 0.6), rgba(14, 14, 40, 0.6));
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(230, 22, 115, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 22, 115, 0.3);
}

.card-header {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-header i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card p {
    padding: 1.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    flex: 1;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, rgba(19, 19, 64, 0.5), rgba(14, 14, 40, 0.5));
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    margin: 0 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(140, 15, 225, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-text p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.cta-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-section .btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.button-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.button-info i {
    color: var(--accent);
}

/* Media Queries for Casino Experience */
@media (max-width: 1200px) {
    .experience-title {
        font-size: 2.2rem;
    }
    
    .header-line {
        width: 70px;
    }
}

@media (max-width: 992px) {
    .experience-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-line {
        display: none;
    }
    
    .experience-title {
        font-size: 2rem;
        white-space: normal;
        text-align: center;
    }
    
    .feature-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .preview-card,
    .preview-card.reverse {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .preview-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .feature-cards-wrapper {
        grid-template-columns: 1fr;
    }
    
    .diagonal-section {
        transform: none;
        padding: 3rem 1.5rem;
    }
    
    .diagonal-content {
        transform: none;
    }
    
    .banner-overlay {
        padding: 1.5rem;
    }
    
    .banner-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .experience-title {
        font-size: 1.7rem;
    }
    
    .lead-paragraph {
        font-size: 1.1rem;
    }
    
    .preview-content h3 {
        font-size: 1.4rem;
    }
    
    .banner-image {
        height: 200px;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
}
