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;
}

.header {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24, #ffa502);
    padding: 0;
    position: relative;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
    z-index: 1000;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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;
}

.logo-icon {
    font-size: 2rem;
    animation: logoSpin 4s linear infinite;
}

@keyframes logoSpin {
    0%, 90% { transform: rotate(0deg); }
    95%, 100% { transform: rotate(360deg); }
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #fff, #f1c40f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.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.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}


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

.nav-menu li a:hover {
    color: #f1c40f;
    transform: translateY(-2px);
}

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

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

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f1c40f;
    color: #f1c40f;
}

.btn-signup {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
}

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

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

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

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

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24, #ffa502);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    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: 10px;
    display: block;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #f1c40f;
    transform: translateX(10px);
}

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

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

.bonus-banner {
    background: rgba(241, 196, 15, 0.9);
    color: #000;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    animation: bannerPulse 2s ease-in-out infinite;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes bannerPulse {
    0%, 100% { background: rgba(241, 196, 15, 0.9); }
    50% { background: rgba(241, 196, 15, 1); }
}

@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.5rem;
    }

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

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

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

    .bonus-banner {
        font-size: 0.8rem;
        padding: 6px;
    }
}

.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, #ff6b6b, #ee5a24, #ffa502);
    background-image:
            radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 15% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 60%),
            radial-gradient(ellipse at 85% 70%, rgba(255, 0, 150, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
    transition: transform 0.3s ease;
}

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

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="20" r="2" fill="rgba(255,255,255,0.15)"/><circle cx="40" cy="70" r="2.5" fill="rgba(255,255,255,0.08)"/><circle cx="80" cy="60" r="1.5" fill="rgba(255,255,255,0.12)"/><circle cx="15" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="3" fill="rgba(255,255,255,0.07)"/></svg>'),
            linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.03) 50%, transparent 70%),
            rgba(0, 0, 0, 0.2);
    z-index: 1;
    animation: floatingDots 20s linear infinite;
}

@keyframes floatingDots {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(5px) translateY(-10px); }
    75% { transform: translateX(-5px) translateY(5px); }
    100% { transform: translateX(0) translateY(0); }
}

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

h1 {
    font-size: 4rem;
    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, #f1c40f, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.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, #f39c12, #e67e22);
    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(243, 156, 18, 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(243, 156, 18, 0.6);
    border-color: #f39c12;
}

.floating-cards {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    opacity: 0.4;
    animation: float 4s ease-in-out infinite;
}

.casino-chips {
    position: absolute;
    left: 60px;
    bottom: 60px;
    font-size: 3rem;
    opacity: 0.3;
    animation: rotate 8s linear infinite;
}

.dollar-signs {
    position: absolute;
    top: 100px;
    left: 200px;
    font-size: 1.5rem;
    opacity: 0.2;
    animation: pulse 3s ease-in-out infinite;
}

.dice-icons {
    position: absolute;
    bottom: 120px;
    right: 150px;
    font-size: 2rem;
    opacity: 0.25;
    animation: bounce 2.5s ease-in-out infinite;
}

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.4; }
}

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

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

    h1 {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

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

.footer {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24, #ffa502);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

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

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

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

.footer-section {
    color: white;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #f1c40f;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.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: inline-block;
    position: relative;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background: #f1c40f;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f1c40f;
    transform: translateX(5px);
}

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

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #f1c40f, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: #f1c40f;
    color: #000;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f1c40f;
}

.payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 15px;
}

.payment-methods span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-right: 10px;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .payment-methods {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 1.2rem;
    }

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

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.casino-block {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24, #ffa502);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
    transition: transform 0.3s ease;
}

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

.casino-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="20" r="2" fill="rgba(255,255,255,0.15)"/><circle cx="40" cy="70" r="2.5" fill="rgba(255,255,255,0.08)"/><circle cx="80" cy="60" r="1.5" fill="rgba(255,255,255,0.12)"/><circle cx="15" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="3" fill="rgba(255,255,255,0.07)"/></svg>'),
            rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

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

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

@keyframes titleShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.features-list li::before {
    content: '✓';
    background: #f1c40f;
    color: #000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

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

.btn-primary {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(243, 156, 18, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 1.1rem;
    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(255, 255, 255, 0.1);
    border-color: #f1c40f;
    color: #f1c40f;
    transform: translateY(-3px);
}

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

.bonus-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.bonus-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #f1c40f;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 10px;
    border-radius: 10px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #f1c40f;
}

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

.floating-elements {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

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

.casino-icons {
    position: absolute;
    bottom: 30px;
    left: 40px;
    font-size: 1.5rem;
    opacity: 0.2;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

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

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

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

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

    .floating-elements,
    .casino-icons {
        display: none;
    }
}

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

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

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

    .stats-row {
        grid-template-columns: 1fr;
    }
}

.content-text {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.15);
    border: 2px solid rgba(255, 107, 107, 0.2);
    position: relative;
    overflow: hidden;
}

.content-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 30%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(255, 165, 2, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.content-text h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ff6b6b;
    margin-bottom: 25px;
    margin-top: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 25px;
}

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

.content-text h2::before {
    content: '🎰';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.content-text h2 strong {
    background: linear-gradient(45deg, #ff6b6b, #ffa502);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

.content-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #ffa502, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
}

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

.content-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content-text table td,
.content-text table th {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

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

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

.content-text table tbody tr:hover {
    background: rgba(255, 107, 107, 0.15);
    transform: scale(1.02);
}

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

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

.content-text table td p strong,
.content-text table th p strong {
    color: #ffa502;
    font-weight: 700;
}

.content-text table th {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

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

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

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

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

.table-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b6b, #ffa502);
    border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ffa502, #ff6b6b);
}

/* Highlight boxes for special content */
.content-text .highlight-box {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 165, 2, 0.15));
    border-left: 5px solid #ffa502;
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.content-text .highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    transform: translate(30px, -30px);
}

.content-text .highlight-box p {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

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

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

    .content-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        padding-left: 35px;
    }

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

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

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

    .content-text table {
        font-size: 0.9rem;
        min-width: 600px;
    }

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

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

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

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

    .content-text h2 {
        font-size: 1.5rem;
        padding-left: 30px;
    }

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

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

    .content-text ul li {
        font-size: 0.95rem;
        padding-left: 30px;
    }

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

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

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