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: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.nav-header {
    background: linear-gradient(135deg, #2d3561 0%, #1e2749 100%);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #1a1a2e;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.1) rotate(360deg);
}

.logo-text {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #1a1a2e;
    font-weight: bold;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2d3561 0%, #1e2749 100%);
    border-radius: 15px;
    padding: 20px 0;
    min-width: 220px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 25px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding-left: 35px;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.action-btn {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.95rem;
}

.btn-login {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-signup {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 215, 0, 0.1);
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #ffd700;
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: #ffd700;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 320px;
    height: calc(100vh - 80px);
    background: linear-gradient(135deg, #2d3561 0%, #1e2749 100%);
    padding: 30px 0;
    transition: right 0.4s ease;
    z-index: 1001;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-item {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-item:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.05);
    padding-left: 40px;
}

.mobile-menu-item.active {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    font-weight: bold;
}

.mobile-menu-item.active::before {
    width: 5px;
}

.mobile-submenu {
    background: rgba(0, 0, 0, 0.2);
    padding-left: 20px;
}

.mobile-submenu .mobile-menu-item {
    padding: 15px 30px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-actions {
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.mobile-actions .action-btn {
    display: block;
    text-align: center;
    margin-bottom: 15px;
    width: 100%;
}

/* Demo content */
.demo-content {
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
}

.demo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.demo-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 15px;
        gap: 30px;
    }

    .nav-menu {
        gap: 25px;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 8px 12px;
    }

    .action-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 15px;
        gap: 25px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 8px 10px;
    }

    .action-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 900px) {
    .nav-container {
        justify-content: space-between;
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .mobile-menu {
        width: 300px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 70px;
        padding: 0 15px;
        justify-content: space-between;
    }

    body {
        padding-top: 70px;
    }

    .mobile-menu {
        top: 70px;
        height: calc(100vh - 70px);
        width: 280px;
    }

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

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .hamburger-line {
        width: 25px;
        height: 2px;
        margin: 2px 0;
    }

    .demo-content h2 {
        font-size: 2rem;
    }

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

.banner-container {
    max-width: 1400px;
    margin: 80px auto 0;

    @media(max-width: 780px) {
        margin-top: 50px
    }
}

.hero-banner {
    border-radius: 30px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 215, 0, 0.3);
}
@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 0.6; }
}

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

.banner-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    width: 100%;
}

.banner-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6)); }
}

.banner-subtitle {
    font-size: 1.6rem;
    color: #e2e8f0;
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.banner-highlight {
    color: #ffd700;
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #ffd700 100%);
    color: #1a1a2e;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

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

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

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffed4a 0%, #ffd700 50%, #ffed4a 100%);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

.bonus-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
    animation: bounce 2s ease-in-out infinite;
    z-index: 4;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

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

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: floatIcon 8s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    bottom: 35%;
    right: 25%;
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

.floating-icon:nth-child(6) {
    top: 70%;
    right: 10%;
    animation-delay: 5s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    25% { transform: translateY(-20px) rotate(90deg); opacity: 0.3; }
    50% { transform: translateY(-10px) rotate(180deg); opacity: 0.2; }
    75% { transform: translateY(-30px) rotate(270deg); opacity: 0.4; }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-banner {
        padding: 70px 50px;
        min-height: 550px;
    }

    .banner-title {
        font-size: 4rem;
    }

    .banner-subtitle {
        font-size: 1.4rem;
    }

    .cta-button {
        font-size: 1.3rem;
        padding: 18px 45px;
    }
}

@media (max-width: 1024px) {
    .banner-container {
        padding: 0 15px;
    }

    .hero-banner {
        padding: 60px 40px;
        min-height: 500px;
    }

    .banner-title {
        font-size: 3.5rem;
    }

    .bonus-badge {
        top: 30px;
        right: 30px;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 50px 30px;
        min-height: 450px;
        border-radius: 20px;
    }

    .banner-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .banner-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .cta-button {
        font-size: 1.2rem;
        padding: 16px 40px;
        min-width: 250px;
    }

    .bonus-badge {
        position: static;
        margin-bottom: 30px;
        display: inline-block;
    }

    .floating-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-banner {
        padding: 40px 25px;
        min-height: 400px;
    }

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

    .banner-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 15px 35px;
        min-width: 220px;
        gap: 10px;
    }

    .floating-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .banner-container {
        padding: 0 10px;
    }

    .hero-banner {
        padding: 35px 20px;
        min-height: 380px;
        border-radius: 15px;
    }

    .banner-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .banner-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cta-button {
        font-size: 1rem;
        padding: 14px 30px;
        min-width: 200px;
    }

    .bonus-badge {
        padding: 10px 18px;
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
}

.container-block {
    max-width: 1400px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.casino-block {
    background: linear-gradient(135deg, #2d3561 0%, #1e2749 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.casino-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

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

.block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.casino-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #1a1a2e;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.casino-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 15px;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.stars {
    color: #ffd700;
    font-size: 18px;
}

.rating-text {
    color: #ffffff;
    font-weight: bold;
}

.casino-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.features {
    color: #ffffff;
}

.features h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '✓';
    color: #4ade80;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.bonus-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.bonus-title {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.bonus-amount {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

.bonus-details {
    color: #cccccc;
    text-align: center;
    line-height: 1.5;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 180px;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.casino-info {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.info-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.info-label {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-value {
    color: #ffd700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
        gap: 20px;
    }

    .casino-block {
        padding: 25px 20px;
    }

    .block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .casino-title {
        font-size: 1.6rem;
    }

    .casino-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .action-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .casino-info {
        flex-direction: column;
        gap: 20px;
    }

    .info-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .casino-block {
        padding: 20px 15px;
    }

    .casino-title {
        font-size: 1.4rem;
    }

    .bonus-amount {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

.footer {
    background: linear-gradient(135deg, #0a0f1e 0%, #1a1a2e 50%, #16213e 100%);
    margin-top: 60px;
    padding: 60px 0 0;
    border-top: 3px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section {
    color: #ffffff;
}

.footer-title {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #ffd700;
    padding-left: 10px;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info h4 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.badge {
    background: rgba(76, 222, 128, 0.1);
    color: #4ade80;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    border: 1px solid rgba(76, 222, 128, 0.2);
    font-weight: 500;
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    background: rgba(239, 68, 68, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.age-badge {
    background: #ef4444;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 50px;
    text-align: center;
}

.age-restriction p {
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.legal-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.legal-links a:hover {
    color: #ffd700;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 -20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #cccccc;
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.disclaimer-text {
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.disclaimer-text a {
    color: #ffd700;
    text-decoration: none;
}

.disclaimer-text a:hover {
    text-decoration: underline;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .payment-icons {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
        margin-top: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 40px;
    }

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

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

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

    .age-restriction {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .legal-links {
        flex-direction: column;
        gap: 10px;
    }

    .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }

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

    .payment-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .payment-icon {
        padding: 10px 5px;
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding: 20px;
        margin: 0 -15px;
    }

    .disclaimer-text {
        font-size: 0.8rem;
        padding: 0 15px;
    }

    .age-restriction {
        padding: 15px;
    }

    .legal-links {
        padding: 15px;
    }
}

.showcase-wrapper {
    max-width: 1400px;
    margin: 20px auto;
}

.game-showcase {
    background: linear-gradient(135deg, #2d3561 0%, #1e2749 100%);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.game-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

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

.showcase-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    background: linear-gradient(45deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-subtitle {
    color: #cccccc;
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.tab-button.active,
.tab-button:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    padding: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

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

.game-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.game-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #db2777 100%);
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.game-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%) skewX(-15deg); }
    50% { transform: translateX(100%) skewX(-15deg); }
}

.game-info {
    position: relative;
    z-index: 2;
}

.game-name {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.game-provider {
    color: #ffd700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #cccccc;
    font-size: 0.9rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-label {
    opacity: 0.8;
}

.stat-value {
    color: #ffd700;
    font-weight: bold;
}

.game-actions {
    display: flex;
    gap: 10px;
}

.play-btn {
    flex: 1;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.demo-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.showcase-footer {
    text-align: center;
    position: relative;
    z-index: 2;
}

.view-all-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 215, 0, 0.5);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.view-all-btn:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a2e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .game-showcase {
        padding: 40px 30px;
    }

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

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

@media (max-width: 768px) {
    .showcase-wrapper {
        padding: 0 10px;
    }

    .game-showcase {
        padding: 30px 20px;
    }

    .showcase-title {
        font-size: 2rem;
    }

    .showcase-subtitle {
        font-size: 1.1rem;
    }

    .category-tabs {
        gap: 10px;
    }

    .tab-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .game-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .game-showcase {
        padding: 25px 15px;
    }

    .showcase-title {
        font-size: 1.8rem;
    }

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

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

    .stat-item {
        flex-direction: row;
        justify-content: space-between;
    }

    .game-actions {
        flex-direction: column;
    }

    .category-tabs {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 10px;
    }

    .tab-button {
        padding: 12px;
        text-align: center;
    }

    .view-all-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-container {
    background: linear-gradient(135deg, rgba(45, 53, 97, 0.9) 0%, rgba(30, 39, 73, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.content-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.8), transparent);
}

/* Typography */
h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(45deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    line-height: 1.2;
}

h2 {
    color: #ffd700;
    font-size: 2.2rem;
    font-weight: bold;
    margin: 50px 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

h2:first-of-type {
    margin-top: 0;
}

h2::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4a);
    border-radius: 2px;
}

h3 {
    color: #ffed4a;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 35px 0 20px 0;
}

h4 {
    color: #e2e8f0;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

p {
    color: #e2e8f0;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

strong {
    color: #ffd700;
    font-weight: 700;
}

/* Lists */
ul, ol {
    margin: 25px 0;
    padding-left: 30px;
}

li {
    color: #e2e8f0;
    font-size: 1.1rem;
    margin-bottom: 10px;
    position: relative;
}

ul li::marker {
    color: #ffd700;
    font-size: 1.2rem;
}

ol li::marker {
    color: #ffd700;
    font-weight: bold;
}

ul li::before {
    content: '▸';
    color: #ffd700;
    position: absolute;
    left: -20px;
    font-weight: bold;
}

ul li {
    list-style: none;
}

/* Tables */
.table-wrapper {
    margin: 30px 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow-x: auto;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

.table-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ffd700, #ffed4a);
    border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #ffed4a, #ffd700);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
}

th {
    color: #1a1a2e;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 18px 20px;
    text-align: left;
    border-bottom: 2px solid rgba(26, 26, 46, 0.2);
}

tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

tbody tr:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.01);
}

tbody tr:last-child {
    border-bottom: none;
}

td {
    color: #e2e8f0;
    font-size: 1rem;
    padding: 16px 20px;
    vertical-align: top;
}

td strong {
    color: #ffd700;
}

/* Blockquotes */
blockquote {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-left: 5px solid #ffd700;
    margin: 30px 0;
    padding: 25px 30px;
    border-radius: 10px;
    position: relative;
}

blockquote::before {
    content: '"';
    color: #ffd700;
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 10px;
    opacity: 0.3;
}

blockquote p {
    color: #ffffff;
    font-style: italic;
    margin: 0;
    font-size: 1.15rem;
}

/* Links */
a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4a);
    transition: width 0.3s ease;
}

a:hover {
    color: #ffed4a;
}

a:hover::after {
    width: 100%;
}

/* Code and Pre */
code {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 3px 8px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

pre {
    background: rgba(0, 0, 0, 0.3);
    color: #e2e8f0;
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-family: 'Courier New', monospace;
}

/* Special elements */
.highlight-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    position: relative;
}

.highlight-box::before {
    content: '⚡';
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(135deg, #2d3561 0%, #1e2749 100%);
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-container {
        padding: 50px 40px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

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

    .content-container {
        padding: 40px 30px;
        border-radius: 20px;
    }

    h1 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    h2 {
        font-size: 1.8rem;
        margin: 40px 0 20px 0;
    }

    h3 {
        font-size: 1.4rem;
        margin: 30px 0 15px 0;
    }

    p, li {
        font-size: 1rem;
        text-align: left;
    }

    .table-wrapper {
        padding: 15px 10px;
        margin: 25px -10px;
        border-radius: 10px;
    }

    table {
        min-width: 500px;
    }

    th {
        font-size: 1rem;
        padding: 15px 12px;
    }

    td {
        font-size: 0.95rem;
        padding: 14px 12px;
    }

    ul, ol {
        padding-left: 25px;
    }

    blockquote {
        margin: 25px -10px;
        padding: 20px 25px;
    }

    .highlight-box {
        margin: 25px -10px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.6rem;
        margin: 35px 0 18px 0;
    }

    h3 {
        font-size: 1.3rem;
    }

    p, li {
        font-size: 0.95rem;
    }

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

    table {
        min-width: 450px;
    }

    th {
        font-size: 0.9rem;
        padding: 12px 8px;
    }

    td {
        font-size: 0.85rem;
        padding: 12px 8px;
    }

    blockquote {
        padding: 15px 20px;
        margin: 20px -15px;
    }

    blockquote::before {
        font-size: 3rem;
        top: -5px;
        left: 5px;
    }

    .highlight-box {
        padding: 15px;
        margin: 20px -15px;
    }
}