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, #4834d4, #686de0, #30336b);
    padding: 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(72, 52, 212, 0.4);
    z-index: 1000;
    border-bottom: 2px solid rgba(231, 76, 60, 0.3);
}

.header::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"><polygon points="50,10 60,35 85,35 65,50 75,75 50,60 25,75 35,50 15,35 40,35" fill="rgba(231,76,60,0.08)"/><polygon points="20,20 25,30 35,30 28,37 32,47 20,42 8,47 12,37 5,30 15,30" fill="rgba(241,196,15,0.06)"/></svg>'),
            rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.vip-banner {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.vip-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: vipShine 3s infinite;
}

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

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

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

.logo-crown {
    font-size: 2.2rem;
    animation: crownFloat 3s ease-in-out infinite;
}

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

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

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

.vip-badge {
    background: linear-gradient(45deg, #f1c40f, #e67e22);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    position: absolute;
    top: -5px;
    right: -10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    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: 12px 22px;
    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(231, 76, 60, 0.1), rgba(241, 196, 15, 0.1));
    transition: left 0.4s ease;
    z-index: -1;
}

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

.nav-menu li a:hover {
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
}

.nav-menu li.vip-item a {
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.2), rgba(241, 196, 15, 0.2));
    border-color: rgba(231, 76, 60, 0.5);
}

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

.btn-login {
    background: transparent;
    color: white;
    border: 2px solid rgba(231, 76, 60, 0.5);
    padding: 10px 22px;
    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(231, 76, 60, 0.1);
    border-color: #e74c3c;
    color: #e74c3c;
    transform: translateY(-2px);
}

.btn-signup {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 12px 28px;
    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 6px 18px rgba(231, 76, 60, 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(231, 76, 60, 0.5);
}

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

.hamburger span {
    width: 28px;
    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(7px, 7px);
    background: #e74c3c;
}

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

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4834d4, #686de0, #30336b);
    border-top: 2px solid rgba(231, 76, 60, 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: vipSlideDown 0.4s ease;
}

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

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

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

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

.mobile-nav li a:hover {
    background: rgba(231, 76, 60, 0.1);
    border-color: rgba(231, 76, 60, 0.5);
    color: #e74c3c;
    transform: translateX(12px);
}

.mobile-nav li.vip-item a {
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.15), rgba(241, 196, 15, 0.15));
    border-color: rgba(231, 76, 60, 0.3);
}

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

.mobile-actions .btn-login,
.mobile-actions .btn-signup {
    text-align: center;
    padding: 15px 30px;
    font-size: 1rem;
}

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

    .hamburger {
        display: flex;
    }
}

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

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

    .logo-crown {
        font-size: 2rem;
    }
}

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

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

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

    .mobile-nav li a {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
}

.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, #4834d4, #686de0, #30336b);
    background-image:
            radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 20% 20%, rgba(231, 76, 60, 0.1) 0%, transparent 60%),
            radial-gradient(ellipse at 80% 80%, rgba(241, 196, 15, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
    box-shadow: 0 15px 40px rgba(72, 52, 212, 0.3);
    transition: transform 0.3s ease;
}

.banner:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(72, 52, 212, 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"><polygon points="50,10 60,35 85,35 65,50 75,75 50,60 25,75 35,50 15,35 40,35" fill="rgba(255,255,255,0.08)"/><polygon points="20,20 25,30 35,30 28,37 32,47 20,42 8,47 12,37 5,30 15,30" fill="rgba(255,255,255,0.06)"/><polygon points="80,70 85,80 95,80 88,87 92,97 80,92 68,97 72,87 65,80 75,80" fill="rgba(255,255,255,0.07)"/></svg>'),
            linear-gradient(60deg, transparent 40%, rgba(255,255,255,0.02) 50%, transparent 60%),
            rgba(0, 0, 0, 0.15);
    z-index: 1;
    animation: starTwinkle 15s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

.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, #e74c3c, #f1c40f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

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

.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, #e74c3c, #c0392b);
    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(231, 76, 60, 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(231, 76, 60, 0.6);
    border-color: #e74c3c;
}

.floating-elements {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 2.2rem;
    opacity: 0.4;
    animation: rotate 6s linear infinite;
}

.vip-elements {
    position: absolute;
    bottom: 80px;
    left: 80px;
    font-size: 2.5rem;
    opacity: 0.3;
    animation: float 5s ease-in-out infinite;
}

.diamond-icons {
    position: absolute;
    top: 120px;
    left: 150px;
    font-size: 1.8rem;
    opacity: 0.25;
    animation: sparkle 4s ease-in-out infinite;
}

.luxury-symbols {
    position: absolute;
    bottom: 150px;
    right: 200px;
    font-size: 2rem;
    opacity: 0.2;
    animation: pulse 3.5s ease-in-out infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg) translateY(0px); }
    50% { transform: rotate(180deg) translateY(-10px); }
    100% { transform: rotate(360deg) translateY(0px); }
}

.crown {
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 3rem;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.25; }
    50% { transform: scale(1.3) rotate(180deg); opacity: 0.5; }
}

@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, #4834d4, #686de0, #30336b);
    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 20% 30%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(241, 196, 15, 0.08) 0%, transparent 50%),
            rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.footer::after {
    content: '👑 💎 ⭐';
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

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

.vip-badge {
    text-align: center;
    margin-bottom: 40px;
}

.vip-badge h2 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #e74c3c, #f1c40f, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.footer-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
}

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

.footer-section h3::before {
    content: '💎';
    font-size: 1rem;
}

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

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

.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: 8px;
    padding: 8px 0;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.footer-section ul li a::before {
    content: '▶';
    font-size: 0.7rem;
    color: #e74c3c;
    transition: transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
    border-left-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

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

.exclusive-section {
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.1), rgba(241, 196, 15, 0.1));
    border: 2px solid rgba(231, 76, 60, 0.3);
}

.exclusive-section h3 {
    color: #f1c40f;
}

.exclusive-section h3::before {
    content: '👑';
}

.contact-info {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.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, #e74c3c, #c0392b);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.social-links a:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    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: 30px;
    justify-content: center;
    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;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-links a:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.license-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

.license-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
}

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

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

    .footer-section {
        padding: 20px;
    }

    .vip-badge h2 {
        font-size: 2rem;
    }

    .footer-links {
        gap: 15px;
    }

    .social-links {
        gap: 10px;
    }

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

@media (max-width: 480px) {
    .vip-badge h2 {
        font-size: 1.6rem;
    }

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

    .footer::after {
        display: none;
    }
}

.casino-block {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #4834d4, #686de0, #30336b);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 70px rgba(72, 52, 212, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(231, 76, 60, 0.3);
}

.casino-block:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 80px rgba(72, 52, 212, 0.5);
    border-color: rgba(231, 76, 60, 0.6);
}

.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"><polygon points="50,10 60,35 85,35 65,50 75,75 50,60 25,75 35,50 15,35 40,35" fill="rgba(231,76,60,0.1)"/><polygon points="20,20 25,30 35,30 28,37 32,47 20,42 8,47 12,37 5,30 15,30" fill="rgba(241,196,15,0.08)"/><polygon points="80,70 85,80 95,80 88,87 92,97 80,92 68,97 72,87 65,80 75,80" fill="rgba(231,76,60,0.12)"/></svg>'),
            rgba(0, 0, 0, 0.3);
    z-index: 1;
    animation: backgroundShift 8s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(-5px) translateY(-5px); }
    66% { transform: translateX(5px) translateY(5px); }
}

.vip-crown {
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 3rem;
    opacity: 0.2;
    animation: crownGlow 4s ease-in-out infinite;
}

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

.vip-diamonds {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    opacity: 0.3;
    animation: diamondSparkle 6s linear infinite;
}

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

.block-content {
    position: relative;
    z-index: 2;
    padding: 60px 50px;
}

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

.vip-badge {
    background: linear-gradient(45deg, #e74c3c, #f1c40f);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    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(231, 76, 60, 0.3);
}

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

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

.block-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.vip-feature {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px solid transparent;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vip-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    transition: left 0.6s ease;
}

.vip-feature:hover::before {
    left: 100%;
}

.vip-feature:hover {
    border-color: rgba(231, 76, 60, 0.5);
    transform: translateY(-10px);
    background: rgba(231, 76, 60, 0.1);
}

.vip-feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.vip-feature h3 {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.vip-benefits {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.vip-benefits h3 {
    text-align: center;
    font-size: 2rem;
    color: #f1c40f;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(231, 76, 60, 0.1);
    transform: translateX(10px);
}

.benefit-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.benefit-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-section {
    text-align: center;
}

.btn-vip {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-vip::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-vip:hover::before {
    left: 100%;
}

.btn-vip:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.6);
}

.exclusive-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .block-content {
        padding: 40px 25px;
    }

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

    .vip-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .vip-crown,
    .vip-diamonds {
        display: none;
    }
}

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

    .vip-feature {
        padding: 20px;
    }

    .vip-benefits {
        padding: 25px;
    }

    .btn-vip {
        width: 100%;
        max-width: 350px;
    }
}

.content-text {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a2e, #2d2d3a);
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 25px 70px rgba(72, 52, 212, 0.25);
    border: 2px solid rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.content-text::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"><polygon points="50,10 60,35 85,35 65,50 75,75 50,60 25,75 35,50 15,35 40,35" fill="rgba(231,76,60,0.06)"/><polygon points="20,20 25,30 35,30 28,37 32,47 20,42 8,47 12,37 5,30 15,30" fill="rgba(241,196,15,0.05)"/></svg>'),
            radial-gradient(circle at 25% 25%, rgba(231, 76, 60, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(72, 52, 212, 0.08) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundFloat 8s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(-3px) translateY(-3px); }
    66% { transform: translateX(3px) translateY(3px); }
}

.content-text h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #e74c3c;
    margin-bottom: 30px;
    margin-top: 45px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-left: 40px;
    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: 1.8rem;
    animation: crownPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(231, 76, 60, 0.5));
}

@keyframes crownPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        filter: drop-shadow(0 0 10px rgba(231, 76, 60, 0.5));
    }
    50% {
        transform: translateY(-50%) scale(1.15);
        filter: drop-shadow(0 0 20px rgba(231, 76, 60, 0.8));
    }
}

.content-text h2 strong {
    background: linear-gradient(45deg, #e74c3c, #f1c40f, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: vipGradient 4s ease-in-out infinite;
}

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

.content-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 22px;
    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;
    background: rgba(231, 76, 60, 0.08);
    border-radius: 15px;
    padding: 25px;
    border-left: 5px solid #e74c3c;
}

.content-text ul li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    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, #e74c3c, #f1c40f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    animation: diamondSparkle 2s ease-in-out infinite;
}

@keyframes diamondSparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

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

.content-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 35px 0;
    background: rgba(72, 52, 212, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(231, 76, 60, 0.2);
}

.content-text table td,
.content-text table th {
    padding: 18px 25px;
    text-align: left;
    border-bottom: 1px solid rgba(231, 76, 60, 0.15);
    position: relative;
}

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

.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(231, 76, 60, 0.08);
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.2);
}

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

.content-text table th {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    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;
}

/* VIP Table scroll on mobile */
.table-wrapper {
    overflow-x: auto;
    margin: 35px -25px;
    padding: 0 25px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #e74c3c 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, #e74c3c, #f1c40f);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #f1c40f, #e74c3c);
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.5);
}

/* VIP Premium highlight boxes */
.content-text .vip-box {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15), rgba(241, 196, 15, 0.15));
    border: 2px solid rgba(231, 76, 60, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin: 35px 0;
    position: relative;
    overflow: hidden;
}

.content-text .vip-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.1) 0%, transparent 70%);
    animation: vipGlow 4s ease-in-out infinite;
}

@keyframes vipGlow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

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

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

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

/* VIP Badge for special sections */
.content-text .vip-badge {
    display: inline-block;
    background: linear-gradient(45deg, #f1c40f, #e67e22);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0%, 100% { box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3); }
    50% { box-shadow: 0 5px 25px rgba(241, 196, 15, 0.6); }
}

/* 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.6rem;
    }

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

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

    .content-text ul 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;
    }
}

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

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

    .content-text ul {
        padding: 18px;
    }

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

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

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

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

    .vip-box {
        padding: 20px;
    }
}