html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,*:after,*:before {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    margin: 0;
    padding: 0;
}

.jackpot-ticker {
    background: linear-gradient(90deg, #f39c12, #e74c3c, #f1c40f);
    color: white;
    padding: 8px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    animation: jackpotPulse 2s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes jackpotPulse {
    0%, 100% { background-size: 100% 100%; }
    50% { background-size: 110% 110%; }
}

.ticker-content {
    display: flex;
    animation: scroll 15s linear infinite;
    gap: 80px;
    white-space: nowrap;
}

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

.header {
    background: linear-gradient(135deg, #00d2d3, #01a3a4, #2c2c54);
    padding: 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 210, 211, 0.4);
    z-index: 1000;
}

.sparkling-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(2px 2px at 20px 30px, #fff, transparent),
            radial-gradient(2px 2px at 40px 70px, #fff, transparent),
            radial-gradient(1px 1px at 90px 40px, #fff, transparent),
            radial-gradient(1px 1px at 130px 80px, #fff, transparent),
            radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 4s linear infinite;
    opacity: 0.2;
    z-index: 1;
}

@keyframes sparkle {
    from { transform: translateX(0); }
    to { transform: translateX(200px); }
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(255, 20, 147, 0.08) 0%, transparent 50%),
            rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
}

.logo-icon {
    font-size: 1.8rem;
    animation: jackpotSpin 3s linear infinite;
    filter: drop-shadow(0 0 10px rgba(243, 156, 18, 0.5));
}

@keyframes jackpotSpin {
    0%, 85% { transform: rotate(0deg) scale(1); }
    90% { transform: rotate(180deg) scale(1.1); }
    95% { transform: rotate(270deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #f39c12, #e74c3c, #f1c40f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: logoJackpotGlow 2.5s ease-in-out infinite;
}

@keyframes logoJackpotGlow {
    0%, 100% {
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% {
        background-position: 100% 50%;
        transform: scale(1.02);
    }
}

.jackpot-amount {
    position: absolute;
    top: -10px;
    right: -15px;
    background: linear-gradient(45deg, #f1c40f, #f39c12);
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 3px 6px;
    border-radius: 10px;
    animation: amountBounce 1.5s ease-in-out infinite;
    box-shadow: 0 3px 10px rgba(241, 196, 15, 0.4);
}

@keyframes amountBounce {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.1) translateY(-2px); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    white-space: nowrap;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(155, 89, 182, 0.1), rgba(243, 156, 18, 0.1));
    transition: left 0.4s ease;
    z-index: -1;
}

.nav-menu li a:hover::before {
    left: 0;
}

.nav-menu li a:hover {
    color: #9b59b6;
    border-color: rgba(155, 89, 182, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.2);
}

.nav-menu li.jackpot-item a {
    background: linear-gradient(45deg, rgba(243, 156, 18, 0.2), rgba(231, 76, 60, 0.2));
    border-color: rgba(243, 156, 18, 0.5);
    animation: jackpotMenuGlow 3s ease-in-out infinite;
}

@keyframes jackpotMenuGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(243, 156, 18, 0.3); }
    50% { box-shadow: 0 0 15px rgba(243, 156, 18, 0.6); }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    background: transparent;
    color: white;
    border: 2px solid rgba(155, 89, 182, 0.5);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: rgba(155, 89, 182, 0.1);
    border-color: #9b59b6;
    color: #9b59b6;
    transform: translateY(-2px);
}

.btn-signup {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(155, 89, 182, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.btn-signup:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    transform-origin: center;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #f39c12;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #f39c12;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #00d2d3, #01a3a4, #2c2c54);
    border-top: 2px solid rgba(155, 89, 182, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    display: block;
    animation: jackpotSlideDown 0.4s ease;
}

@keyframes jackpotSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 20px;
}

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

.mobile-nav li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid transparent;
}

.mobile-nav li a:hover {
    background: rgba(155, 89, 182, 0.1);
    border-color: rgba(155, 89, 182, 0.5);
    color: #9b59b6;
    transform: translateX(10px);
}

.mobile-nav li.jackpot-item a {
    background: linear-gradient(45deg, rgba(243, 156, 18, 0.15), rgba(231, 76, 60, 0.15));
    border-color: rgba(243, 156, 18, 0.3);
}

.mobile-actions {
    position: relative;
    z-index: 2;
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-actions .btn-login,
.mobile-actions .btn-signup {
    text-align: center;
    padding: 12px 25px;
    font-size: 0.9rem;
}

.floating-jackpot {
    position: absolute;
    top: 12px;
    right: 20px;
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    padding: 6px 12px;
    border-radius: 18px;
    font-weight: 900;
    font-size: 0.75rem;
    z-index: 3;
    animation: floatJackpot 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

@keyframes floatJackpot {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

@media (max-width: 1024px) {
    .nav-menu,
    .header-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 12px 15px;
    }

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

    .logo-icon {
        font-size: 1.6rem;
    }

    .floating-jackpot {
        font-size: 0.65rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }

    .logo-icon {
        font-size: 1.4rem;
    }

    .jackpot-ticker {
        font-size: 0.75rem;
        padding: 6px;
    }

    .mobile-nav li a {
        font-size: 0.9rem;
        padding: 10px 16px;
    }

    .floating-jackpot {
        display: none;
    }
}

.banner {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #00d2d3, #01a3a4, #2c2c54);
    background-image:
            radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 10% 70%, rgba(255, 215, 0, 0.12) 0%, transparent 60%),
            radial-gradient(ellipse at 90% 20%, rgba(255, 20, 147, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
    box-shadow: 0 15px 40px rgba(0, 210, 211, 0.3);
    transition: transform 0.3s ease;
}

.banner:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 210, 211, 0.4);
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: white;
}

h1 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    background: linear-gradient(45deg, #fff, #f39c12, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: jackpotGlow 2s ease-in-out infinite alternate;
}

@keyframes jackpotGlow {
    0% {
        background-position: 0% 50%;
        transform: scale(1);
    }
    100% {
        background-position: 100% 50%;
        transform: scale(1.05);
    }
}

.subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(155, 89, 182, 0.4);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(155, 89, 182, 0.6);
    border-color: #9b59b6;
}

.jackpot-amount {
    position: absolute;
    top: 20px;
    left: 30px;
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    animation: bounce 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

.slot-symbols {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2rem;
    opacity: 0.4;
    animation: spin 3s linear infinite;
}

.jackpot-coins {
    position: absolute;
    bottom: 100px;
    left: 100px;
    font-size: 2.8rem;
    opacity: 0.3;
    animation: coinFlip 4s ease-in-out infinite;
}

.lucky-symbols {
    position: absolute;
    top: 150px;
    left: 250px;
    font-size: 1.6rem;
    opacity: 0.25;
    animation: lucky 6s ease-in-out infinite;
}

.bonus-icons {
    position: absolute;
    bottom: 180px;
    right: 180px;
    font-size: 2.2rem;
    opacity: 0.2;
    animation: bonus 5s ease-in-out infinite;
}

@keyframes coinFlip {
    0%, 100% { transform: rotateY(0deg) translateY(0px); }
    25% { transform: rotateY(90deg) translateY(-8px); }
    50% { transform: rotateY(180deg) translateY(0px); }
    75% { transform: rotateY(270deg) translateY(-8px); }
}

@keyframes lucky {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.25; }
    50% { transform: scale(1.4) rotate(360deg); opacity: 0.4; }
}

@keyframes bonus {
    0%, 100% { transform: translateX(0px) translateY(0px); opacity: 0.2; }
    33% { transform: translateX(10px) translateY(-5px); opacity: 0.3; }
    66% { transform: translateX(-5px) translateY(8px); opacity: 0.35; }
}

.sparkling-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(2px 2px at 20px 30px, #fff, transparent),
            radial-gradient(2px 2px at 40px 70px, #fff, transparent),
            radial-gradient(1px 1px at 90px 40px, #fff, transparent),
            radial-gradient(1px 1px at 130px 80px, #fff, transparent),
            radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 3s linear infinite;
    opacity: 0.6;
}

@keyframes sparkle {
    from { transform: translateX(0); }
    to { transform: translateX(200px); }
}

@media (max-width: 768px) {
    .banner {
        height: 300px;
        padding: 30px 20px;
    }

    h1 {
        font-size: 1rem;
    }

    .subtitle {
        font-size: .8rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .jackpot-amount {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

.footer {
    background: linear-gradient(135deg, #00d2d3, #01a3a4, #2c2c54);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
            rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.sparkling-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(2px 2px at 20px 30px, #fff, transparent),
            radial-gradient(2px 2px at 40px 70px, #fff, transparent),
            radial-gradient(1px 1px at 90px 40px, #fff, transparent),
            radial-gradient(1px 1px at 130px 80px, #fff, transparent),
            radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 4s linear infinite;
    opacity: 0.3;
}

@keyframes sparkle {
    from { transform: translateX(0); }
    to { transform: translateX(200px); }
}

.floating-coins {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    opacity: 0.2;
    animation: coinFloat 8s ease-in-out infinite;
}

@keyframes coinFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(-10px) rotate(270deg); }
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 30px;
}

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

.jackpot-amount {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #f39c12, #e74c3c, #f1c40f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: jackpotGlow 2s ease-in-out infinite alternate;
    margin-bottom: 10px;
}

@keyframes jackpotGlow {
    0% {
        background-position: 0% 50%;
        transform: scale(1);
    }
    100% {
        background-position: 100% 50%;
        transform: scale(1.05);
    }
}

.jackpot-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-bottom: 40px;
}

.footer-section {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    backdrop-filter: blur(15px);
    position: relative;
    transition: all 0.3s ease;
}

.footer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(45deg, #9b59b6, #00d2d3, #f39c12);
    border-radius: 20px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-section:hover::before {
    opacity: 1;
}

.footer-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 210, 211, 0.2);
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #9b59b6;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.games-section h3::before { content: '🎰'; }
.jackpots-section h3::before { content: '💰'; }
.promotions-section h3::before { content: '🎁'; }
.support-section h3::before { content: '💬'; }

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.footer-section ul li a::before {
    content: '🍀';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(155, 89, 182, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-section ul li a:hover {
    color: #9b59b6;
    background: rgba(155, 89, 182, 0.1);
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    transform: rotate(360deg) scale(1.2);
}

.footer-section ul li a:hover::after {
    left: 100%;
}

.jackpot-games {
    background: linear-gradient(45deg, rgba(243, 156, 18, 0.1), rgba(231, 76, 60, 0.1));
}

.progressive-tracker {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    text-align: center;
}

.progressive-tracker h4 {
    color: #f39c12;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.mini-jackpots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.mini-jackpot {
    background: rgba(241, 196, 15, 0.1);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.mini-jackpot .amount {
    font-weight: 700;
    color: #f1c40f;
    font-size: 0.9rem;
}

.mini-jackpot .label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.winners-ticker {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 50px;
}

.winner-item {
    flex-shrink: 0;
    color: #f1c40f;
    font-size: 0.9rem;
}

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

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.social-links a:hover::before {
    transform: rotate(45deg) translateX(100%) translateY(100%);
}

.social-links a:hover {
    transform: translateY(-8px) scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(155, 89, 182, 0.5);
}

.footer-bottom {
    border-top: 2px solid rgba(155, 89, 182, 0.3);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 25px;
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid transparent;
}

.footer-links a:hover {
    color: #9b59b6;
    background: rgba(155, 89, 182, 0.2);
    border-color: rgba(155, 89, 182, 0.5);
    transform: translateY(-2px);
}

.security-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
    flex-wrap: wrap;
}

.security-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 768px) {
    .footer-content {
        padding: 40px 15px 20px;
    }

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

    .footer-section {
        padding: 20px;
    }

    .jackpot-amount {
        font-size: 2.2rem;
    }

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

    .footer-links {
        gap: 15px;
    }

    .social-links {
        gap: 10px;
    }

    .security-badges {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .jackpot-amount {
        font-size: 1.8rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .floating-coins {
        display: none;
    }

    .mini-jackpots {
        grid-template-columns: 1fr;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

.casino-block {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #00d2d3, #01a3a4, #2c2c54);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 210, 211, 0.3);
    transition: all 0.3s ease;
}

.casino-block:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 210, 211, 0.4);
}

.sparkling-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(2px 2px at 20px 30px, #fff, transparent),
            radial-gradient(2px 2px at 40px 70px, #fff, transparent),
            radial-gradient(1px 1px at 90px 40px, #fff, transparent),
            radial-gradient(1px 1px at 130px 80px, #fff, transparent),
            radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 4s linear infinite;
    opacity: 0.4;
    z-index: 1;
}

@keyframes sparkle {
    from { transform: translateX(0); }
    to { transform: translateX(200px); }
}

.casino-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
            rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.floating-jackpot {
    position: absolute;
    top: 25px;
    right: 40px;
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 1.3rem;
    z-index: 3;
    animation: jackpotPulse 2s ease-in-out infinite;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

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

.lucky-symbols {
    position: absolute;
    bottom: 30px;
    left: 40px;
    font-size: 2rem;
    opacity: 0.3;
    z-index: 3;
    animation: luckyFloat 8s ease-in-out infinite;
}

@keyframes luckyFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    50% { transform: translateY(-5px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(10deg); }
}

.block-content {
    position: relative;
    z-index: 2;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.left-section {
    text-align: left;
}

.jackpot-badge {
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3); }
    50% { box-shadow: 0 5px 25px rgba(243, 156, 18, 0.6); }
}

.block-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #f39c12, #e74c3c, #f1c40f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: jackpotTitleGlow 2s ease-in-out infinite alternate;
}

@keyframes jackpotTitleGlow {
    0% {
        background-position: 0% 50%;
        transform: scale(1);
    }
    100% {
        background-position: 100% 50%;
        transform: scale(1.02);
    }
}

.block-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.jackpot-info {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    border: 2px solid rgba(155, 89, 182, 0.3);
}

.current-jackpot {
    text-align: center;
    margin-bottom: 20px;
}

.jackpot-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f1c40f;
    animation: amountCounter 3s ease-in-out infinite;
}

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

.jackpot-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mini-jackpots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.mini-jackpot {
    background: rgba(155, 89, 182, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(155, 89, 182, 0.3);
    transition: all 0.3s ease;
}

.mini-jackpot:hover {
    background: rgba(155, 89, 182, 0.2);
    transform: scale(1.05);
}

.mini-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #9b59b6;
    margin-bottom: 5px;
}

.mini-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

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

.btn-jackpot {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    color: white;
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(155, 89, 182, 0.4);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-jackpot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.btn-jackpot:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(155, 89, 182, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #9b59b6;
    padding: 16px 35px;
    border: 2px solid #9b59b6;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(155, 89, 182, 0.1);
    color: white;
    transform: translateY(-3px);
}

.right-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.jackpot-game {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jackpot-game::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(155, 89, 182, 0.1), transparent);
    transition: left 0.6s ease;
}

.jackpot-game:hover::before {
    left: 100%;
}

.jackpot-game:hover {
    border-color: rgba(155, 89, 182, 0.5);
    transform: translateX(10px);
}

.game-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.game-icon {
    font-size: 2.5rem;
}

.game-info h3 {
    font-size: 1.4rem;
    color: #9b59b6;
    margin-bottom: 5px;
}

.game-jackpot {
    font-size: 1.1rem;
    color: #f1c40f;
    font-weight: 700;
}

.game-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 15px;
}

.game-stats {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
}

.stat {
    color: rgba(255, 255, 255, 0.7);
}

.stat strong {
    color: #f1c40f;
}

.recent-winners {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.recent-winners h4 {
    color: #f39c12;
    margin-bottom: 15px;
    text-align: center;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.winner-amount {
    color: #f1c40f;
    font-weight: 700;
}

@media (max-width: 768px) {
    .block-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .block-title {
        font-size: 2.4rem;
    }

    .jackpot-amount {
        font-size: 2rem;
    }

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

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

    .floating-jackpot,
    .lucky-symbols {
        display: none;
    }
}

@media (max-width: 480px) {
    .block-title {
        font-size: 2rem;
    }

    .jackpot-amount {
        font-size: 1.6rem;
    }

    .mini-jackpots {
        grid-template-columns: 1fr;
    }

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

    .btn-jackpot,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .game-stats {
        flex-direction: column;
        gap: 10px;
    }
}

.content-text {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a2c54, #2d3a4a);
    border-radius: 25px;
    padding: 55px;
    box-shadow: 0 20px 60px rgba(0, 210, 211, 0.2);
    border: 2px solid rgba(155, 89, 182, 0.3);
    position: relative;
    overflow: hidden;
}

.sparkling-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(2px 2px at 20px 30px, #fff, transparent),
            radial-gradient(2px 2px at 40px 70px, #fff, transparent),
            radial-gradient(1px 1px at 90px 40px, #fff, transparent),
            radial-gradient(1px 1px at 130px 80px, #fff, transparent),
            radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 4s linear infinite;
    opacity: 0.3;
    z-index: -1;
}

@keyframes sparkle {
    from { transform: translateX(0); }
    to { transform: translateX(200px); }
}

.content-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(155, 89, 182, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(0, 210, 211, 0.05) 0%, transparent 60%);
    z-index: -1;
}

.content-text h2 {
    font-size: 2.3rem;
    font-weight: 900;
    color: #9b59b6;
    margin-bottom: 28px;
    margin-top: 45px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding-left: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.content-text h2:first-child {
    margin-top: 0;
}

.content-text h2::before {
    content: '💰';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: jackpotBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(243, 156, 18, 0.6));
}

@keyframes jackpotBounce {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        filter: drop-shadow(0 0 15px rgba(243, 156, 18, 0.6));
    }
    50% {
        transform: translateY(-55%) scale(1.2);
        filter: drop-shadow(0 0 25px rgba(243, 156, 18, 0.9));
    }
}

.content-text h2 strong {
    background: linear-gradient(45deg, #f39c12, #e74c3c, #f1c40f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: jackpotGlow 2s ease-in-out infinite alternate;
}

@keyframes jackpotGlow {
    0% {
        background-position: 0% 50%;
        transform: scale(1);
    }
    100% {
        background-position: 100% 50%;
        transform: scale(1.02);
    }
}

.content-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 20px;
    margin-top: 35px;
    position: relative;
    padding-left: 35px;
}

.content-text h3::before {
    content: '🎯';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    animation: targetSpin 3s linear infinite;
}

@keyframes targetSpin {
    0%, 90% { transform: translateY(-50%) rotate(0deg); }
    95%, 100% { transform: translateY(-50%) rotate(360deg); }
}

.content-text h3 strong {
    color: #f1c40f;
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
}

.content-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

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

.content-text ul {
    list-style: none;
    margin: 30px 0;
    padding-left: 0;
}

.content-text ul li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.content-text ul li::before {
    content: '🍀';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #9b59b6, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.4);
    animation: luckyRotate 4s ease-in-out infinite;
}

@keyframes luckyRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
}

.content-text ul li:hover {
    color: #f39c12;
    transform: translateX(10px);
}

.content-text ol {
    list-style: none;
    counter-reset: jackpot-counter;
    margin: 30px 0;
    padding-left: 0;
}

.content-text ol li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    counter-increment: jackpot-counter;
    transition: all 0.3s ease;
}

.content-text ol li::before {
    content: counter(jackpot-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.content-text ol li:hover {
    color: #f39c12;
    transform: translateX(8px);
}

.content-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 35px 0;
    background: rgba(155, 89, 182, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(243, 156, 18, 0.3);
}

.content-text table td,
.content-text table th {
    padding: 18px 25px;
    text-align: left;
    border-bottom: 1px solid rgba(155, 89, 182, 0.2);
    position: relative;
}

.content-text table td:first-child,
.content-text table th:first-child {
    border-left: 5px solid #f39c12;
}

.content-text table tbody tr {
    transition: all 0.3s ease;
    position: relative;
}


.content-text table tbody tr:hover::before {
    width: 100%;
}

.content-text table tbody tr:hover {
    background: rgba(243, 156, 18, 0.1);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.content-text table td {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.content-text table td p {
    margin: 0;
    font-size: 1.05rem;
}

.content-text table td p strong,
.content-text table th p strong {
    color: #f1c40f;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
    animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% { text-shadow: 0 0 10px rgba(241, 196, 15, 0.5); }
    50% { text-shadow: 0 0 20px rgba(241, 196, 15, 0.8); }
}

.content-text table th {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content-text table th p {
    margin: 0;
    color: white;
    font-weight: 700;
}

/* Jackpot Table scroll on mobile */
.table-wrapper {
    overflow-x: auto;
    margin: 35px -25px;
    padding: 0 25px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #f39c12 rgba(255, 255, 255, 0.1);
}

.table-wrapper::-webkit-scrollbar {
    height: 10px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #f39c12, #9b59b6);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.4);
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #9b59b6, #f39c12);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.6);
}

/* Jackpot highlight boxes */
.content-text .jackpot-box {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.15), rgba(155, 89, 182, 0.15));
    border: 2px solid rgba(243, 156, 18, 0.4);
    border-radius: 20px;
    padding: 30px;
    margin: 35px 0;
    position: relative;
    overflow: hidden;
}

.content-text .jackpot-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
            radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
            radial-gradient(circle, rgba(155, 89, 182, 0.1) 30%, transparent 70%);
    animation: jackpotSwirl 8s linear infinite;
}

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

.content-text .jackpot-box p {
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

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

.content-text .jackpot-box p strong {
    color: #f1c40f;
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
}

/* Jackpot Badge for special sections */
.content-text .jackpot-badge {
    display: inline-block;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
    animation: jackpotPulse 2s ease-in-out infinite;
}

@keyframes jackpotPulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 30px rgba(243, 156, 18, 0.6);
        transform: scale(1.05);
    }
}

/* Floating jackpot amount */
.content-text .floating-jackpot {
    position: absolute;
    top: 20px;
    right: 30px;
    background: linear-gradient(45deg, #f1c40f, #f39c12);
    color: #000;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(241, 196, 15, 0.4);
    animation: floatAmount 3s ease-in-out infinite;
}

@keyframes floatAmount {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.05); }
}

/* Responsive design */
@media (max-width: 768px) {
    .content-text {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .content-text h2 {
        font-size: 2rem;
        margin-bottom: 25px;
        padding-left: 45px;
    }

    .content-text h2::before {
        font-size: 1.7rem;
    }

    .content-text h3 {
        font-size: 1.4rem;
        padding-left: 30px;
    }

    .content-text h3::before {
        font-size: 1.1rem;
    }

    .content-text p {
        font-size: 1.05rem;
        text-align: left;
    }

    .content-text ul li,
    .content-text ol li {
        font-size: 1.05rem;
        padding-left: 40px;
    }

    .content-text table {
        font-size: 0.95rem;
        min-width: 650px;
    }

    .content-text table td,
    .content-text table th {
        padding: 15px 20px;
    }

    .table-wrapper {
        margin: 30px -25px;
    }

    .floating-jackpot {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 10px;
    }

    .content-text {
        padding: 25px 20px;
    }

    .content-text h2 {
        font-size: 1.7rem;
        padding-left: 40px;
    }

    .content-text h2::before {
        font-size: 1.5rem;
    }

    .content-text h3 {
        font-size: 1.2rem;
        padding-left: 28px;
    }

    .content-text h3::before {
        font-size: 1rem;
    }

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

    .content-text ul li,
    .content-text ol li {
        font-size: 1rem;
        padding-left: 35px;
    }

    .content-text ul li::before {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }

    .content-text ol li::before {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .content-text table {
        font-size: 0.9rem;
    }

    .table-wrapper {
        margin: 25px -20px;
        padding: 0 20px;
    }

    .jackpot-box {
        padding: 20px;
    }

    .floating-jackpot {
        display: none;
    }
}