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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.navigation-wrapper {
    background: linear-gradient(145deg, #2d2d44, #1e1e36);
    border-bottom: 3px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.navigation-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, #ff6b35, #00d4ff, transparent);
    animation: pulse-line 3s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
    white-space: nowrap;
}

.brand-section {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ff6b35, #00d4ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-decoration: none;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.brand-title:hover {
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

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

.menu-item {
    position: relative;
}

.menu-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.menu-link:hover::before {
    left: 0;
}

.menu-link:hover {
    color: #ffd700;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.menu-link.active {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #1a1a2e;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

.login-link {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.login-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.register-btn {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #1a1a2e;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.register-btn::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;
}

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

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger {
    width: 25px;
    height: 20px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.mobile-toggle.active .hamburger span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.mobile-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    left: -25px;
}

.mobile-toggle.active .hamburger span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

.demo-content {
    padding: 100px 20px;
    text-align: center;
    color: #e0e0e0;
}

.demo-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Tablet specific styles - use hamburger menu */
@media (max-width: 1024px) and (min-width: 769px) {
    .main-menu,
    .cta-section {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-container {
        padding: 0 25px;
    }

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

/* Mobile styles */
@media (max-width: 768px) {
    .nav-container {
        height: 70px;
        padding: 0 15px;
    }

    .main-menu,
    .cta-section {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

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

@media (max-width: 480px) {

    .nav-container {
        height: 65px;
        padding: 0 10px;
    }

    .brand-title {
        font-size: 1.2rem;
    }
}

/* Energy accent for special elements */
.energy-accent {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.banner-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 40px;
    height: 600px;
    background: linear-gradient(145deg, #2d2d44, #1e1e36);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(0, 212, 255, 0.2) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

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

.banner-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
}

.site-title {
    font-size: 30px;
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ff6b35, #00d4ff, #ffd700);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: gradient-shift 4s ease-in-out infinite;
    letter-spacing: 2px;
    line-height: 1.1;

    @media(max-width: 920px) {
        font-size: 26px;
    }
}

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

.subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #1a1a2e;
    text-decoration: none;
    padding: 20px 50px;
    border-radius: 60px;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.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.6s ease;
}

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

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.6);
    border-color: rgba(255, 215, 0, 0.8);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

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

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

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

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

.floating-icon:nth-child(4) {
    bottom: 15%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

.sparkle-effect {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle-effect:nth-child(odd) {
    animation-delay: 1.5s;
}

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

.features-highlight {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 600;
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-container {
        border-radius: 20px;
    }

    .banner-content {
        padding: 40px 30px;
    }

    .features-highlight {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .cta-button {
        padding: 18px 40px;
    }
}

@media (max-width: 480px) {

    .banner-container {
        border-radius: 15px;
    }

    .banner-content {
        padding: 30px 20px;
    }

    .cta-button {
        padding: 16px 35px;
    }

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

/* Advanced animations */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: pulse-ring 4s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.energy-accent {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 700;
}



.main-wrapper {
    max-width: 1400px;
    margin: 0 auto 20px;
    background: linear-gradient(145deg, #2d2d44, #1e1e36);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.top-section {
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ffd700);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.primary-title {
    color: #1a1a2e;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.secondary-text {
    color: #2d2d44;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 40px;
    background: rgba(45, 45, 68, 0.8);
}

.info-block {
    background: linear-gradient(145deg, #3a3a58, #2d2d44);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700, #00d4ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
    z-index: -1;
}

.info-block:hover::before {
    opacity: 0.1;
}

.info-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
}

.visual-element {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a1a2e;
    font-weight: bold;
    animation: pulse 2s infinite;
}

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

.large-metric {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ff6b35, #00d4ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.metric-title {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.supporting-text {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.5;
}

.action-area {
    background: linear-gradient(90deg, #1a1a2e, #2d2d44, #1a1a2e);
    padding: 40px;
    text-align: center;
    border-top: 3px solid rgba(255, 215, 0, 0.3);
}

.action-link {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #1a1a2e;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 10px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.action-link::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;
}

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

.action-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.accent-text {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .top-section {
        padding: 20px;
    }

    .info-block {
        padding: 25px;
    }

    .action-area {
        padding: 30px 20px;
    }

    .action-link {
        display: block;
        margin: 10px auto;
        max-width: 280px;
    }
}

@media (max-width: 480px) {

    .content-grid {
        padding: 15px;
    }

    .info-block {
        padding: 20px;
    }
}

/* Animation for counters */
.animate-in {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slots-wrapper {
    max-width: 1400px;
    margin: 0 auto 20px;
    background: linear-gradient(145deg, #2d2d44, #1e1e36);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.title-section {
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ffd700);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.main-heading {
    color: #1a1a2e;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.subtitle {
    color: #2d2d44;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.scroll-container {
    padding: 40px 20px;
    background: rgba(45, 45, 68, 0.8);
    position: relative;
}

.slots-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 215, 0, 0.5) rgba(45, 45, 68, 0.3);
}

.slots-track::-webkit-scrollbar {
    height: 8px;
}

.slots-track::-webkit-scrollbar-track {
    background: rgba(45, 45, 68, 0.3);
    border-radius: 10px;
}

.slots-track::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff6b35, #ffd700);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.slots-track::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #ffd700, #ff6b35);
}

.game-item {
    flex: 0 0 280px;
    background: linear-gradient(145deg, #3a3a58, #2d2d44);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.game-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700, #00d4ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
    z-index: -1;
}

.game-item:hover::before {
    opacity: 0.1;
}

.game-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
}

.game-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(45deg, #2d2d44, #3a3a58);
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #4a4a6a, #3a3a58);
}

.game-item:hover .game-image {
    transform: scale(1.05);
}

.overlay-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #1a1a2e;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.content-section {
    padding: 20px;
}

.game-title {
    font-size: 1.3rem;
    color: #e0e0e0;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.game-info {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 15px;
    line-height: 1.4;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.feature-tag {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.play-button {
    width: 100%;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #1a1a2e;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.accent-highlight {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-container {
        padding: 30px 15px;
    }

    .slots-track {
        gap: 15px;
        padding: 5px;
    }

    .game-item {
        flex: 0 0 250px;
    }

    .title-section {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {

    .scroll-container {
        padding: 20px 10px;
    }

    .game-item {
        flex: 0 0 220px;
    }

    .image-container {
        height: 160px;
    }

    .content-section {
        padding: 15px;
    }
}

/* Animation for items appearing */
.fade-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicators */
.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1a1a2e;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.scroll-indicator:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.scroll-left {
    left: 20px;
}

.scroll-right {
    right: 20px;
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

.footer-wrapper {
    background: linear-gradient(145deg, #1a1a2e, #0f1419);
    border-top: 3px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, #ff6b35, #00d4ff, transparent);
    animation: pulse-line 3s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

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

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

.footer-section {
    background: linear-gradient(145deg, rgba(45, 45, 68, 0.4), rgba(30, 30, 54, 0.4));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.footer-section:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-title {
    color: #ffd700;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ffd700);
    border-radius: 2px;
}

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

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

.footer-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ffd700);
    transition: width 0.3s ease;
}

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

.footer-link:hover::before {
    width: 30px;
}

.footer-text {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    color: #ffd700;
    font-weight: bold;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.payment-item {
    background: linear-gradient(145deg, #3a3a58, #2d2d44);
    padding: 12px 18px;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.payment-item:hover {
    background: linear-gradient(145deg, #4a4a68, #3a3a58);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.license-section {
    background: linear-gradient(145deg, rgba(15, 15, 25, 0.8), rgba(10, 10, 20, 0.8));
    padding: 30px;
    margin: 40px 0 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.license-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: center;
}

.license-item {
    text-align: center;
    padding: 15px;
    background: rgba(45, 45, 68, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.license-text {
    color: #b0b0b0;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.license-value {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
}

.bottom-section {
    background: linear-gradient(90deg, #0f1419, #1a1a2e, #0f1419);
    padding: 25px 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

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

.bottom-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.bottom-link:hover {
    color: #ffd700;
}

.copyright-text {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.5;
}

.accent-text {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(45, 45, 68, 0.5);
    color: #e0e0e0;
    font-size: 0.95rem;
}

.newsletter-input::placeholder {
    color: #888;
}

.newsletter-btn {
    padding: 12px 20px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #1a1a2e;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        padding: 40px 15px 0;
    }

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

    .footer-section {
        padding: 25px 20px;
    }

    .bottom-section {
        padding: 20px 15px;
    }

    .bottom-links {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

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

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

    .section-title {
        font-size: 1.2rem;
    }

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

.text-content {
    max-width: 1400px;
    margin: 20px auto 20px;
    padding: 40px 20px;
    background: linear-gradient(145deg, #2d2d44, #1e1e36);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out;
}

/* Headings */
.text-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700, #ff6b35, #00d4ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin: 40px 0 20px 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

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

.text-content h2 strong {
    font-weight: inherit;
    background: inherit;
    background-clip: inherit;
    -webkit-background-clip: inherit;
    color: inherit;
}

/* Paragraphs */
.text-content p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

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

/* Lists */
.text-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.text-content ul li {
    position: relative;
    padding: 10px 0 10px 30px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #e0e0e0;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.text-content ul li::before {
    content: '🎰';
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 1rem;
    color: #ffd700;
}

.text-content ul li:hover {
    color: #ffd700;
    padding-left: 35px;
}

/* Table container for mobile scroll */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 215, 0, 0.5) rgba(45, 45, 68, 0.3);
}

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

.table-container::-webkit-scrollbar-track {
    background: rgba(45, 45, 68, 0.3);
    border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff6b35, #ffd700);
    border-radius: 10px;
    transition: background 0.3s ease;
}

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

/* Tables */
.text-content table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(145deg, #3a3a58, #2d2d44);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    min-width: 500px;
}

.text-content table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    vertical-align: top;
}

.text-content table tr:first-child td {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #1a1a2e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
}

.text-content table tr:not(:first-child) td {
    color: #e0e0e0;
}

.text-content table tr:not(:first-child):hover {
    background: rgba(255, 215, 0, 0.05);
}

.text-content table tr:not(:first-child) td:first-child {
    color: #ffd700;
    font-weight: 600;
}

.text-content table tr:last-child td {
    border-bottom: none;
}

/* Strong/Bold text */
.text-content strong {
    color: #ffd700;
    font-weight: 700;
}

/* Energy accent for special text */
.energy-accent {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {

    .text-content {
        padding: 30px 15px;
        border-radius: 10px;
    }

    .text-content h2 {
        margin: 30px 0 15px 0;
        text-align: center;
    }

    .text-content p {
        text-align: left;
        margin-bottom: 15px;
    }

    .text-content ul li {
        padding: 8px 0 8px 25px;
    }

    .text-content table td {
        padding: 12px 15px;
        min-width: 120px;
    }

    .table-container {
        margin: 20px 0;
    }
}

@media (max-width: 480px) {

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

    .text-content h2 {
        margin: 25px 0 12px 0;
    }

    .text-content p {
        margin-bottom: 12px;
    }

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

    .text-content table td {
        padding: 10px 12px;
        min-width: 100px;
    }
}

/* Animation for content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect for the entire content block */
.text-content:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

/* Make links look good if any exist */
.text-content a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.text-content a:hover {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}