/* Reset and Base Styles */
:root {
    --primary-color: #8a2be2; /* Vibrant purple */
    --secondary-color: #ffd700; /* Gold */
    --dark-bg: #0a1128; /* Dark blue */
    --darker-bg: #050a18; /* Darker blue */
    --card-bg: #111c40; /* Slightly lighter blue */
    --text-color: #ffffff;
    --text-secondary: #d0d0d0;
    --border-color: #2a3a6a;
    --success-color: #4caf50;
    --font-family: 'Kanit', sans-serif;
    --gradient-bg: linear-gradient(135deg, #0a1128 0%, #1a2a5e 100%);
    --card-gradient: linear-gradient(135deg, #111c40 0%, #1e2d5a 100%);
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

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

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

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

p {
    margin-bottom: 15px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

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

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.4s ease;
    z-index: -1;
}

.primary-btn:hover::before {
    left: 100%;
}

.primary-btn:hover {
    background: #9d44f5;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

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

.secondary-btn:hover {
    background-color: var(--secondary-color);
    color: var(--darker-bg);
    transform: translateY(-3px);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(5, 10, 24, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.logo a:hover .logo-icon {
    animation-play-state: paused;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 1));
}

.logo-icon {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
    animation: logo-glow 2s infinite alternate;
}

@keyframes logo-glow {
    from {
        filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
        transform: scale(1);
    }
    to {
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
        transform: scale(1.1);
    }
}

nav ul {
    display: flex;
}

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

nav ul li a {
    font-weight: 500;
    position: relative;
}

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

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

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

/* Hero Section */
.hero-section {
    padding-top: 150px;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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="%23ffffff10"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.hero-section .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
    order: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: left;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-content h1::after {
    left: 0;
    transform: none;
    background: var(--gold-gradient);
}

.hero-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

.hero-image {
    flex: 1;
    min-width: 300px;
    margin-top: 30px;
    order: 2;
}

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

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.about-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    margin-right: 30px;
}

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

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

.feature {
    background: var(--card-gradient);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.3);
}

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

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

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

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

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

.game-card {
    background: var(--card-gradient);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.1);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(138, 43, 226, 0.1), transparent 30%);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.3);
}

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

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

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

.games-image {
    margin: 0 auto;
    max-width: 800px;
}

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

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

.promo-card {
    background: var(--card-gradient);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

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

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

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

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

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    background: var(--card-gradient);
    padding: 20px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.3);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 15px;
}

.contact-item p {
    margin: 0;
    font-weight: 500;
}

/* Footer Styles */
footer {
    background-color: var(--darker-bg);
    padding: 60px 0 30px;
    position: relative;
}

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: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    text-align: left;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.footer-logo h2:hover {
    transform: scale(1.05);
}

.footer-logo h2:hover .logo-icon {
    animation-play-state: paused;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 1));
}

.footer-logo h2 .logo-icon {
    margin-right: 8px;
}

.footer-logo h2::after {
    display: none;
}

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

.footer-links h3, .footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h3::after, .footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

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

.footer-links ul li a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

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

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card-gradient);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.3);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: rgba(5, 10, 24, 0.95);
    padding: 15px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(138, 43, 226, 0.3);
}

.sticky-btn {
    flex: 1;
    padding: 12px 15px;
    margin: 0 5px;
    text-align: center;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

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

.register-btn {
    background: var(--gold-gradient);
    color: var(--darker-bg);
    font-weight: 600;
}

.register-btn:hover {
    background: linear-gradient(135deg, #ffcd00 0%, #ffa700 100%);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

.free-credit-btn:hover {
    background: #9d44f5;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

/* Additional Utility Classes */
.gold-text {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.section-badge {
    display: inline-block;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(138, 43, 226, 0.5);
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--darker-bg);
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Image Frame Styles */
.image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
}

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

.image-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.play-button i {
    color: var(--darker-bg);
    font-size: 1.5rem;
    margin-left: 5px;
}

.image-frame:hover .play-button {
    transform: scale(1);
}

/* Floating Chips Animation */
.floating-chips {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.chip {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-gradient);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0.8;
    animation: float 6s infinite ease-in-out;
}

.chip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border-radius: 50%;
    border: 2px dashed rgba(5, 10, 24, 0.5);
}

.chip-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.chip-2 {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.chip-3 {
    bottom: 10%;
    right: 20%;
    animation-delay: 4s;
}

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

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.decoration-item {
    position: absolute;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(138, 43, 226, 0) 70%);
    border-radius: 50%;
}

.decoration-item:nth-child(1) {
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
}

.decoration-item:nth-child(2) {
    top: 50%;
    right: -150px;
    width: 400px;
    height: 400px;
}

.decoration-item:nth-child(3) {
    bottom: -150px;
    left: 30%;
    width: 350px;
    height: 350px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    padding: 8px 15px;
    border-radius: 50px;
}

.trust-badge i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 0.9rem;
}

.trust-badge span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Card Icon */
.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.game-card:hover .card-icon {
    background: var(--gold-gradient);
    transform: scale(1.1);
}

.game-card:hover .card-icon i {
    color: var(--darker-bg);
}

/* Card Link */
.card-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-link i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: var(--secondary-color);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Jackpot Badge */
.jackpot-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-gradient);
    color: var(--darker-bg);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transform: rotate(5deg);
}

/* Promo Icon */
.promo-icon {
    width: 80px;
    height: 80px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.promo-card:hover .promo-icon {
    background: var(--gold-gradient);
    transform: scale(1.1);
}

.promo-card:hover .promo-icon i {
    color: var(--darker-bg);
}

/* Promo Button */
.promo-button {
    display: inline-block;
    margin-top: 20px;
    background: rgba(138, 43, 226, 0.2);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.promo-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

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

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

.platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><rect x="0" y="0" width="30" height="30" fill="none" stroke="%23ffffff05" stroke-width="1"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.platform-section .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.platform-image {
    width: 100%;
    position: relative;
    order: 1;
    margin-bottom: 20px;
}

.platform-image .image-frame {
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(138, 43, 226, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.platform-image .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.platform-image .image-frame:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.platform-content {
    width: 100%;
    order: 2;
}

.platform-section h2 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-align: left;
    margin-bottom: 30px;
    font-size: 2.8rem;
}

.platform-section h2::after {
    left: 0;
    transform: none;
    background: var(--gold-gradient);
    height: 5px;
    width: 100px;
}

.platform-text {
    margin-bottom: 30px;
    background: rgba(10, 17, 40, 0.5);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.platform-text p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.platform-text strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.platform-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.platform-features {
    margin-bottom: 0;
    background: var(--card-gradient);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.platform-features:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.3);
}

.feature-heading {
    margin-bottom: 20px;
    position: relative;
}

.feature-heading h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.feature-line {
    width: 50px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
}

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

.feature-list {
    margin-bottom: 20px;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(138, 43, 226, 0.2);
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
}

.feature-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-list li:hover .feature-icon {
    background: var(--gold-gradient);
}

.feature-list li:hover .feature-icon i {
    color: var(--darker-bg);
}

.feature-icon i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.feature-info {
    flex: 1;
}

.feature-info span {
    font-weight: 500;
    transition: color 0.3s ease;
}

.feature-list li:hover .feature-info span {
    color: var(--secondary-color);
}

.platform-security {
    background: var(--card-gradient);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.platform-security:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.3);
}

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

.platform-security strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.security-badge {
    display: flex;
    align-items: center;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    padding: 10px 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.security-badge:hover {
    background: rgba(138, 43, 226, 0.2);
    transform: translateY(-3px);
}

.security-badge i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 1rem;
}

.security-badge span {
    font-size: 0.9rem;
    font-weight: 500;
}

.platform-cta {
    display: flex;
    align-items: center;
    margin-top: auto;
    flex-wrap: wrap;
    gap: 20px;
}

.platform-cta .primary-btn {
    background: var(--gold-gradient);
    color: var(--darker-bg);
    font-weight: 600;
    padding: 15px 30px;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.platform-cta .primary-btn:hover {
    background: linear-gradient(135deg, #ffcd00 0%, #ffa700 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.platform-cta .primary-btn i {
    margin-left: 8px;
}

.platform-devices {
    display: flex;
    gap: 10px;
}

.device-icon {
    width: 40px;
    height: 40px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.device-icon i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.device-icon:hover {
    background: var(--gold-gradient);
    transform: translateY(-3px);
}

.device-icon:hover i {
    color: var(--darker-bg);
}

.platform-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    z-index: 2;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--darker-bg);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--darker-bg);
}

.platform-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(5, 10, 24, 0.9), transparent);
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 2;
}

.platform-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

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

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

.platform-cards {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 3;
    margin-bottom: -30px;
}

.platform-card {
    width: 70px;
    height: 90px;
    background: var(--card-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: rotate(-5deg);
}

.platform-card:nth-child(2) {
    transform: translateY(-10px);
}

.platform-card:nth-child(3) {
    transform: rotate(5deg);
}

.platform-card span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 215, 0, 0.1), transparent 30%);
    animation: rotate 10s linear infinite;
}

.platform-card:hover {
    transform: translateY(-10px) rotate(0deg);
}

.platform-card:nth-child(2):hover {
    transform: translateY(-15px);
}

.platform-card:nth-child(3):hover {
    transform: translateY(-10px) rotate(0deg);
}

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

.platform-decoration .decoration-item {
    position: absolute;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(138, 43, 226, 0) 70%);
    border-radius: 50%;
}

.platform-decoration .decoration-item:nth-child(1) {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
}

.platform-decoration .decoration-item:nth-child(2) {
    bottom: 50%;
    left: -150px;
    width: 400px;
    height: 400px;
}

.platform-decoration .decoration-item:nth-child(3) {
    bottom: -150px;
    right: 30%;
    width: 350px;
    height: 350px;
}

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

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><circle cx="3" cy="3" r="1.5" fill="%23ffffff08"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

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

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
}

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

.why-choose-text {
    background: rgba(10, 17, 40, 0.7);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.why-choose-text p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.why-choose-text strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.why-choose-highlights {
    background: var(--card-gradient);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(138, 43, 226, 0.2);
    position: relative;
    z-index: 2;
}

.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlights-list li {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(138, 43, 226, 0.2);
    transition: transform 0.3s ease;
}

.highlights-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.highlights-list li:hover {
    transform: translateX(10px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.highlights-list li:hover .highlight-icon {
    background: var(--gold-gradient);
}

.highlight-icon i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.highlights-list li:hover .highlight-icon i {
    color: var(--darker-bg);
}

.highlight-text {
    flex: 1;
}

.highlight-text span {
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-color);
}

.highlight-text strong {
    color: var(--secondary-color);
}

.why-choose-visual {
    position: relative;
}

.visual-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.slot-machine {
    background: linear-gradient(135deg, #1e2d5a 0%, #111c40 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(138, 43, 226, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    max-width: 300px;
    margin: 0 auto;
}

.slot-machine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(138, 43, 226, 0.1), transparent 30%);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot-machine:hover::before {
    opacity: 1;
}

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

.slot-screen {
    background: #000;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    margin-bottom: 20px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.slot-symbols {
    display: flex;
    justify-content: space-around;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}

.slot-symbols span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e91e63;
    text-shadow: 0 0 5px rgba(233, 30, 99, 0.5);
    animation: pulse 1.5s infinite ease-in-out;
}

.slot-symbols span:nth-child(2) {
    animation-delay: 0.5s;
    color: #2196f3;
    text-shadow: 0 0 5px rgba(33, 150, 243, 0.5);
}

.slot-symbols span:nth-child(3) {
    animation-delay: 1s;
    color: #4caf50;
    text-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

.slot-lever {
    position: relative;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lever-handle {
    width: 30px;
    height: 30px;
    background: var(--gold-gradient);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lever-handle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.lever-base {
    width: 10px;
    height: 70px;
    background: linear-gradient(90deg, #b3b3b3, #e6e6e6, #b3b3b3);
    position: absolute;
    top: 25px;
    border-radius: 5px;
}

.version-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.version-badge {
    background: var(--card-gradient);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--secondary-color);
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.version-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 215, 0, 0.1), transparent 30%);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.version-badge:hover::before {
    opacity: 1;
}

.version-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
    background: linear-gradient(135deg, #1a2a5e 0%, #2a3a7a 100%);
}

.conclusion-box {
    background: rgba(10, 17, 40, 0.7);
    padding: 30px;
    border-radius: 15px;
    border-top: 4px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.conclusion-box p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.conclusion-box strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.conclusion-box .primary-btn {
    margin-top: 10px;
    background: var(--gold-gradient);
    color: var(--darker-bg);
    font-weight: 600;
    padding: 15px 30px;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.conclusion-box .primary-btn:hover {
    background: linear-gradient(135deg, #ffcd00 0%, #ffa700 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

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

.tips-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50"><path d="M25,2 L2,25 L25,48 L48,25 L25,2 Z" fill="none" stroke="%23ffffff08" stroke-width="1"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

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

.tips-header h2 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 2.8rem;
    position: relative;
    z-index: 2;
}

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

.tips-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(10, 17, 40, 0.5);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

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

.tips-intro strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.tips-carousel {
    position: relative;
    margin: 20px 0;
    overflow: hidden;
}

.tips-carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 20px 0;
}

.tips-carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.tip-card {
    flex: 0 0 350px;
    background: var(--card-gradient);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(138, 43, 226, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    scroll-snap-align: start;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.4);
}

.tip-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(138, 43, 226, 0.05), transparent 30%);
    animation: rotate 15s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.tip-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(138, 43, 226, 0.1);
    line-height: 1;
}

.tip-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

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

.tip-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.tip-content strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.tip-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.2);
    z-index: 2;
}

.tip-card:hover .tip-icon {
    background: var(--gold-gradient);
    transform: scale(1.1);
}

.tip-icon i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.tip-card:hover .tip-icon i {
    color: var(--darker-bg);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.carousel-control {
    width: 40px;
    height: 40px;
    background: var(--card-gradient);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-control:hover {
    background: var(--gold-gradient);
    color: var(--darker-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.carousel-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(138, 43, 226, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.tips-conclusion {
    max-width: 900px;
    margin: 20px auto 0;
    background: rgba(10, 17, 40, 0.7);
    padding: 30px;
    border-radius: 15px;
    border-top: 4px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.conclusion-content {
    margin-bottom: 25px;
}

.conclusion-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.conclusion-content strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.tips-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(138, 43, 226, 0.3);
}

.tips-action .primary-btn {
    background: var(--gold-gradient);
    color: var(--darker-bg);
    font-weight: 600;
    padding: 15px 30px;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.tips-action .primary-btn:hover {
    background: linear-gradient(135deg, #ffcd00 0%, #ffa700 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.tips-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tips-share span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.share-icons {
    display: flex;
    gap: 10px;
}

.share-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--card-gradient);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.share-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    border-color: rgba(138, 43, 226, 0.3);
}

.share-icons a i {
    font-size: 1rem;
    color: var(--text-color);
}

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

.floating-coin {
    position: absolute;
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3), 
                inset 0 -3px 5px rgba(0, 0, 0, 0.2),
                inset 0 3px 5px rgba(255, 255, 255, 0.5);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.floating-coin:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5),
                inset 0 -3px 5px rgba(0, 0, 0, 0.2),
                inset 0 3px 5px rgba(255, 255, 255, 0.5);
    filter: brightness(1.2);
    z-index: 10;
}

.floating-coin i {
    color: #ffb700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: spin 12s infinite linear;
    transition: transform 0.3s ease, color 0.3s ease;
}

.floating-coin:hover i {
    color: #ffe066;
    animation-play-state: paused;
}

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

.coin-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
    width: 60px;
    height: 60px;
}

.coin-1 i {
    font-size: 32px;
}

.coin-2 {
    bottom: 20%;
    left: 8%;
    animation-delay: 2s;
    width: 40px;
    height: 40px;
}

.coin-2 i {
    font-size: 22px;
}

.coin-3 {
    top: 60%;
    right: 15%;
    animation-delay: 4s;
    width: 50px;
    height: 50px;
}

.coin-3 i {
    font-size: 28px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-image, .about-content {
        flex: 100%;
    }
    
    .about-image {
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-content, .hero-image {
        flex: 100%;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .platform-section .container {
        flex-direction: column;
    }
    
    .platform-content, .platform-image {
        width: 100%;
    }
    
    .platform-image {
        order: 1;
    }
    
    .platform-content {
        order: 2;
    }
    
    .platform-section h2 {
        text-align: center;
        font-size: 2.2rem;
    }
    
    .platform-section h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
    }
    
    .platform-features-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-image .image-frame {
        transform: none;
    }
    
    /* Why Choose Section Responsive */
    .why-choose-wrapper {
        grid-template-columns: 1fr;
    }
    
    .why-choose-header h2 {
        font-size: 2.2rem;
    }
    
    .slot-machine {
        max-width: 250px;
    }
    
    /* Tips Section Responsive */
    .tips-header h2 {
        font-size: 2.2rem;
    }
    
    .tips-intro p {
        font-size: 1.1rem;
    }
    
    .tip-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .logo a {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        font-size: 1.3rem;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--darker-bg);
        flex-direction: column;
        padding: 80px 20px;
        transition: all 0.4s ease;
        z-index: 1001;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1002;
    }
    
    .features, .games-grid, .promotions {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo h2, .footer-links h3, .footer-social h3 {
        text-align: center;
    }
    
    .footer-links h3::after, .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .sticky-btn {
        font-size: 0.9rem;
        padding: 10px;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .floating-chips {
        display: none;
    }
    
    .decoration-item {
        display: none;
    }
    
    .platform-section {
        padding: 70px 0;
    }
    
    .platform-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .platform-cards {
        justify-content: center;
    }
    
    .security-badges {
        flex-direction: column;
    }
    
    .security-badge {
        width: 100%;
    }
    
    .platform-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stat-item {
        flex: 1;
        min-width: 100px;
    }
    
    .platform-section h2 {
        font-size: 2rem;
    }
    
    /* Why Choose Section Responsive */
    .why-choose-section {
        padding: 70px 0;
    }
    
    .why-choose-header h2 {
        font-size: 2rem;
    }
    
    .version-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .version-badge {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    /* Tips Section Responsive */
    .tips-section {
        padding: 70px 0;
    }
    
    .tips-header h2 {
        font-size: 2rem;
    }
    
    .tips-intro {
        padding: 20px;
    }
    
    .tips-intro p {
        font-size: 1rem;
    }
    
    .tip-card {
        flex: 0 0 280px;
        min-height: 280px;
    }
    
    .tip-number {
        font-size: 2.5rem;
    }
    
    .tip-content h3 {
        font-size: 1.3rem;
    }
    
    .tips-conclusion {
        padding: 25px;
    }
    
    .tips-action {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tips-action .primary-btn {
        width: 100%;
        text-align: center;
    }
    
    .tips-share {
        width: 100%;
        justify-content: space-between;
    }
    
    .floating-coin {
        opacity: 0.6;
    }
    
    .coin-1 {
        width: 50px;
        height: 50px;
    }
    
    .coin-1 i {
        font-size: 26px;
    }
    
    .coin-2 {
        width: 35px;
        height: 35px;
    }
    
    .coin-2 i {
        font-size: 18px;
    }
    
    .coin-3 {
        width: 40px;
        height: 40px;
    }
    
    .coin-3 i {
        font-size: 22px;
    }
    
    .footer-logo h2 {
        font-size: 1.5rem;
    }
    
    .footer-logo h2 .logo-icon {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .sticky-btn {
        font-size: 0.8rem;
        padding: 8px 5px;
    }
    
    .badge, .section-badge {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    .jackpot-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
        top: 10px;
        right: 10px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 1.2rem;
    }
    
    .platform-section {
        padding: 50px 0;
    }
    
    .platform-badge {
        width: 60px;
        height: 60px;
        top: 10px;
        left: 10px;
    }
    
    .badge-number {
        font-size: 1.2rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .platform-card {
        width: 60px;
        height: 80px;
    }
    
    .platform-card span {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-text {
        font-size: 0.7rem;
    }
    
    .platform-section h2 {
        font-size: 1.8rem;
    }
    
    /* Why Choose Section Responsive */
    .why-choose-header h2 {
        font-size: 1.8rem;
    }
    
    .why-choose-text, 
    .why-choose-highlights, 
    .conclusion-box {
        padding: 20px;
    }
    
    .highlight-icon {
        width: 40px;
        height: 40px;
    }
    
    .highlight-icon i {
        font-size: 1.2rem;
    }
    
    .slot-symbols span {
        font-size: 2rem;
    }
    
    /* Tips Section Responsive */
    .tips-header h2 {
        font-size: 1.8rem;
    }
    
    .tips-intro {
        padding: 15px;
    }
    
    .tip-card {
        flex: 0 0 260px;
        padding: 20px;
        min-height: 260px;
    }
    
    .tip-number {
        font-size: 2rem;
        top: 15px;
        right: 15px;
    }
    
    .tip-content h3 {
        font-size: 1.2rem;
    }
    
    .tip-icon {
        width: 40px;
        height: 40px;
    }
    
    .tip-icon i {
        font-size: 1.2rem;
    }
    
    .carousel-control {
        width: 35px;
        height: 35px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .tips-conclusion {
        padding: 20px;
    }
    
    .floating-coin {
        opacity: 0.5;
    }
    
    .coin-1 {
        width: 40px;
        height: 40px;
        right: 5%;
    }
    
    .coin-1 i {
        font-size: 22px;
    }
    
    .coin-2 {
        width: 30px;
        height: 30px;
        left: 5%;
    }
    
    .coin-2 i {
        font-size: 16px;
    }
    
    .coin-3 {
        width: 35px;
        height: 35px;
        right: 8%;
    }
    
    .coin-3 i {
        font-size: 18px;
    }
}

/* Access Section */
.access-section {
    position: relative;
    padding: 80px 0;
    background: var(--gradient-bg);
    overflow: hidden;
}

.access-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNIDQwIDAgTCAwIDAgMCA0MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMmEzYTZhIiBzdHJva2Utd2lkdGg9IjEiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JpZCkiLz48L3N2Zz4=');
    opacity: 0.05;
    z-index: 0;
}

.access-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.access-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

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

.access-main {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    background: rgba(17, 28, 64, 0.7);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

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

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

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

.access-content strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.access-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.device-mockup {
    position: relative;
    width: 280px;
    height: 500px;
    background: #000;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.device-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.device-screen {
    width: 100%;
    height: calc(100% - 40px);
    background: var(--dark-bg);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.device-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: 1px solid #333;
    pointer-events: none;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.device-home-button {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    border: 1px solid #333;
}

.login-interface {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a1128 0%, #1a2a5e 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-logo {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.login-logo i {
    font-size: 30px;
    color: #111;
}

.login-form {
    width: 100%;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 5px;
    font-size: 14px;
}

.input-field {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.input-field i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.login-button {
    background: var(--gold-gradient);
    color: #111;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.security-features {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.security-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(17, 28, 64, 0.7);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.security-feature i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.security-feature span {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
}

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

.feature-box {
    background: rgba(17, 28, 64, 0.7);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

.feature-box:hover::before {
    opacity: 1;
}

.feature-box-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-box-header i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 15px;
}

.feature-box-header h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 600;
}

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

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

.payment-options {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.payment-options i {
    font-size: 24px;
    color: var(--secondary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.payment-options i:hover {
    transform: scale(1.2);
    color: #fff;
}

.support-channels {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.support-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.support-channel:hover {
    transform: translateY(-5px);
}

.support-channel i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.support-channel span {
    font-size: 14px;
    color: var(--text-secondary);
}

.access-conclusion {
    background: rgba(17, 28, 64, 0.7);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    text-align: center;
}

.access-conclusion p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.access-conclusion strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    right: -100px;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 10%;
}

.decoration-line {
    position: absolute;
    background: var(--primary-color);
    opacity: 0.1;
}

.line-1 {
    width: 100%;
    height: 1px;
    top: 30%;
    transform: rotate(-5deg);
}

.line-2 {
    width: 100%;
    height: 1px;
    bottom: 40%;
    transform: rotate(5deg);
}

/* Responsive styles for access section */
@media (max-width: 992px) {
    .access-header h2 {
        font-size: 2.2rem;
    }
    
    .device-mockup {
        width: 240px;
        height: 430px;
    }
}

@media (max-width: 768px) {
    .access-section {
        padding: 60px 0;
    }
    
    .access-header h2 {
        font-size: 1.8rem;
    }
    
    .access-main {
        flex-direction: column;
    }
    
    .access-visual {
        order: -1;
        margin-bottom: 20px;
    }
    
    .device-mockup {
        transform: perspective(1000px) rotateY(0);
    }
    
    .security-features {
        justify-content: center;
    }
    
    .feature-box-header h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .access-section {
        padding: 40px 0;
    }
    
    .access-header h2 {
        font-size: 1.5rem;
    }
    
    .device-mockup {
        width: 220px;
        height: 400px;
    }
    
    .security-feature {
        padding: 10px;
    }
    
    .security-feature i {
        font-size: 20px;
    }
    
    .security-feature span {
        font-size: 10px;
    }
    
    .feature-box {
        padding: 20px;
    }
    
    .feature-box-header i {
        font-size: 20px;
    }
    
    .feature-box-header h3 {
        font-size: 1.2rem;
    }
    
    .support-channel i {
        font-size: 20px;
    }
    
    .support-channel span {
        font-size: 12px;
    }
    
    .access-conclusion {
        padding: 20px;
    }
}

/* Access Section End */

/* Promotions Section */
.promotions-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    overflow: hidden;
    z-index: 1;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNIDQwIDAgTCAwIDAgMCA0MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMmEzYTZhIiBzdHJva2Utd2lkdGg9IjEiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JpZCkiLz48L3N2Zz4=');
    opacity: 0.05;
    z-index: -1;
}

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

.promotions-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    justify-content: center;
}

.promo-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 2;
    justify-content: center;
}

.promo-card {
    background: transparent;
    width: calc(33.333% - 14px);
    height: 300px;
    perspective: 1000px;
    position: relative;
    min-width: 250px;
    max-width: 350px;
    margin-bottom: 15px;
}

.promo-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

.promo-card:hover .promo-card-inner {
    transform: rotateY(180deg);
}

.promo-card-front, .promo-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.promo-card-front {
    background: linear-gradient(145deg, #1e2a4a 0%, #0f1729 100%);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.promo-card-back {
    background: linear-gradient(145deg, #2a3a6a 0%, #1e2a4a 100%);
    transform: rotateY(180deg);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.promo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, var(--gold) 0%, #d4af37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.promo-icon i {
    font-size: 2rem;
    color: var(--dark-bg);
}

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

.promo-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.promo-card p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.4;
}

.promo-card-back h4 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.promo-card-back ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
}

.promo-card-back ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--light-text);
    font-size: 0.95rem;
}

.promo-card-back ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-size: 1.2rem;
}

.promo-btn {
    display: inline-block;
    background: linear-gradient(145deg, var(--gold) 0%, #d4af37 100%);
    color: var(--dark-bg);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.welcome-bonus .promo-card-front {
    border-top: 4px solid #ff9900;
}

.deposit-bonus .promo-card-front {
    border-top: 4px solid #3498db;
}

.cashback .promo-card-front {
    border-top: 4px solid #2ecc71;
}

.jackpot-counter {
    flex: 1;
    background: linear-gradient(145deg, #1e2a4a 0%, #0f1729 100%);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    max-width: 400px;
    height: fit-content;
}

.jackpot-digits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.digit {
    width: 35px;
    height: 55px;
    background: linear-gradient(to bottom, #2a3a6a 0%, #1e2a4a 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
    margin: 0 2px 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.promotions-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    justify-content: center;
}

.promotions-text {
    flex: 1;
    background: rgba(20, 30, 60, 0.6);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 280px;
    max-width: 600px;
}

.promotions-examples {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 280px;
    max-width: 600px;
}

.monthly-event {
    flex-grow: 1;
    margin-top: 20px;
}

.event-calendar {
    background: rgba(20, 30, 60, 0.6);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.calendar-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

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

.floating-gift {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, var(--gold) 0%, #d4af37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    animation: float 15s infinite ease-in-out;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    pointer-events: auto;
}

.confetti {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--gold);
    opacity: 0.5;
    animation: confetti 10s infinite ease-in-out;
    z-index: 0;
}

@media (max-width: 992px) {
    .promotions-showcase {
        flex-direction: column;
        align-items: center;
    }
    
    .jackpot-counter {
        margin-top: 20px;
        width: 100%;
        max-width: 500px;
    }
    
    .promotions-content {
        flex-direction: column;
        align-items: center;
    }
    
    .promo-cards-wrapper {
        justify-content: center;
        width: 100%;
    }
    
    .promo-card {
        width: calc(50% - 15px);
        max-width: 300px;
    }
    
    .promotions-text, .promotions-examples {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .promotions-section {
        padding: 60px 0;
    }
    
    .promotions-header h2 {
        font-size: 1.8rem;
    }
    
    .promotions-intro {
        padding: 20px;
    }
    
    .promotions-intro p {
        font-size: 1rem;
    }
    
    .promo-card {
        width: 100%;
        height: 280px;
        max-width: 350px;
    }
    
    .promo-icon {
        width: 60px;
        height: 60px;
    }
    
    .promo-icon i {
        font-size: 1.8rem;
    }
    
    .promo-value {
        font-size: 2.2rem;
    }
    
    .digit {
        width: 30px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .promotions-text, .promo-list, .event-calendar {
        padding: 20px;
    }
    
    .promotions-examples h3 {
        font-size: 1.3rem;
    }
    
    .floating-gift {
        opacity: 0.6;
    }
    
    .gift-1 {
        width: 50px;
        height: 50px;
    }
    
    .gift-1 i {
        font-size: 1.5rem;
    }
    
    .gift-2 {
        width: 40px;
        height: 40px;
    }
    
    .gift-2 i {
        font-size: 1.2rem;
    }
    
    .gift-3 {
        width: 35px;
        height: 35px;
    }
    
    .gift-3 i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .promotions-section {
        padding: 40px 0;
    }
    
    .promotions-header h2 {
        font-size: 1.5rem;
    }
    
    .promotions-intro {
        padding: 15px;
    }
    
    .promotions-intro p {
        font-size: 0.95rem;
    }
    
    .promo-card {
        height: 250px;
    }
    
    .promo-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .promo-icon i {
        font-size: 1.5rem;
    }
    
    .promo-card h3 {
        font-size: 1.2rem;
    }
    
    .promo-value {
        font-size: 1.8rem;
    }
    
    .promo-card p {
        font-size: 0.9rem;
    }
    
    .digit {
        width: 25px;
        height: 40px;
        font-size: 1.6rem;
    }
    
    .jackpot-title i {
        font-size: 1.5rem;
    }
    
    .jackpot-title span {
        font-size: 1.2rem;
    }
    
    .promotions-text p, .promotions-conclusion p {
        font-size: 0.95rem;
    }
    
    .promo-list li span {
        font-size: 0.9rem;
    }
    
    .event-date {
        min-width: 40px;
        font-size: 0.9rem;
    }
    
    .event-name {
        font-size: 0.9rem;
    }
    
    .floating-gift {
        opacity: 0.5;
    }
    
    .confetti {
        width: 10px;
        height: 10px;
    }
    
    .promotions-conclusion {
        padding: 20px;
    }
    
    .cta-container .primary-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.promotions-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.promotions-header h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.promotions-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    background: rgba(20, 30, 60, 0.6);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.promotions-intro p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.promotions-intro strong {
    color: var(--gold);
    font-weight: 600;
}

.jackpot-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZGVmcz48cmFkaWFsR3JhZGllbnQgaWQ9InJhZGlhbC1ncmFkaWVudCIgY3g9IjEwMCIgY3k9IjEwMCIgcj0iMTAwIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZDcwMCIgc3RvcC1vcGFjaXR5PSIwLjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmQ3MDAiIHN0b3Atb3BhY2l0eT0iMCIvPjwvcmFkaWFsR3JhZGllbnQ+PC9kZWZzPjxjaXJjbGUgY3g9IjEwMCIgY3k9IjEwMCIgcj0iMTAwIiBmaWxsPSJ1cmwoI3JhZGlhbC1ncmFkaWVudCkiLz48L3N2Zz4=');
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
}

.jackpot-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.jackpot-title i {
    font-size: 2rem;
    color: var(--gold);
    margin-right: 15px;
}

.jackpot-title span {
    font-size: 1.5rem;
    color: var(--light-text);
    font-weight: 600;
}

.jackpot-amount {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.currency {
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
    margin-right: 10px;
}

.digit::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.2) 0%, transparent 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pulse-digit::after {
    animation: digit-pulse 0.5s ease-out;
}

@keyframes digit-pulse {
    0% {
        opacity: 0.8;
        transform: translateY(-100%);
    }
    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

.digit:nth-child(2n) {
    animation-delay: 0.3s;
}

.digit:nth-child(3n) {
    animation-delay: 0.6s;
}

.jackpot-info {
    text-align: center;
    position: relative;
    z-index: 1;
}

.jackpot-info p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.5;
}

.promotions-text p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.promotions-text strong {
    color: var(--gold);
    font-weight: 600;
}

.promotions-examples h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.promotions-examples h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

.promo-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    background: rgba(20, 30, 60, 0.6);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.promo-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.promo-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.promo-list li i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}

.promo-list li span {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.5;
}

.promo-list li span strong {
    color: var(--gold);
    font-weight: 600;
}

.calendar-header {
    background: linear-gradient(145deg, var(--gold) 0%, #d4af37 100%);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-header i {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-right: 10px;
}

.calendar-header span {
    font-size: 1.2rem;
    color: var(--dark-bg);
    font-weight: 600;
}

.event-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.event-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.event-date {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 15px;
    min-width: 50px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.event-name {
    color: var(--light-text);
    font-size: 1rem;
}

.promotions-conclusion {
    text-align: center;
    background: rgba(20, 30, 60, 0.6);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.promotions-conclusion p {
    color: var(--light-text);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.promotions-conclusion strong {
    color: var(--gold);
    font-weight: 600;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-container .primary-btn {
    margin-bottom: 20px;
}

.notification-signup {
    display: flex;
    align-items: center;
}

.notification-signup label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.notification-signup input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: var(--gold);
}

.notification-signup span {
    color: var(--light-text);
    font-size: 0.95rem;
}

.floating-gift i {
    font-size: 2rem;
    color: var(--dark-bg);
    animation: spin 12s infinite linear;
    transition: color 0.3s ease, animation-play-state 0.3s ease;
}

.floating-gift:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
    filter: brightness(1.2);
    z-index: 10;
}

.floating-gift:hover i {
    color: var(--darker-bg);
    animation-play-state: paused;
}

.gift-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.gift-1 i {
    font-size: 1.8rem;
}

.gift-2 {
    top: 40%;
    right: 7%;
    width: 50px;
    height: 50px;
    animation-delay: -5s;
}

.gift-2 i {
    font-size: 1.5rem;
}

.gift-3 {
    bottom: 20%;
    left: 10%;
    width: 45px;
    height: 45px;
    animation-delay: -10s;
}

.gift-3 i {
    font-size: 1.4rem;
}

.confetti-1 {
    top: 20%;
    right: 15%;
    transform: rotate(15deg);
    animation-delay: -2s;
}

.confetti-2 {
    top: 60%;
    left: 20%;
    transform: rotate(45deg);
    animation-delay: -5s;
}

.confetti-3 {
    bottom: 15%;
    right: 25%;
    transform: rotate(30deg);
    animation-delay: -8s;
}

@keyframes confetti {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(100px) rotate(180deg);
        opacity: 0.8;
    }
}
