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, #0a0a0a 0%, #1a1a2e 100%);;
}

.header {
    background: linear-gradient(145deg, #16213e 0%, #0f3460 50%, #1e2a4a 100%);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35) 1;
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 100%;
    animation: borderFlow 4s ease infinite;
}

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

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: logoGlow 3s ease-in-out infinite alternate;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes logoGlow {
    from { text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3); }
    to { text-shadow: 0 2px 8px rgba(255, 107, 53, 0.6), 0 0 20px rgba(255, 107, 53, 0.3); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 15px;
    min-width: 0;
}

.nav-link {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-cta {
    display: flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-login {
    background: linear-gradient(145deg, #1e2a4a, #2d3a5c);
    color: #b8c5d6;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
    white-space: nowrap;
}

.btn-login:hover {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    color: #ff6b35;
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

.btn-register {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: linear-gradient(145deg, #16213e 0%, #0f3460 50%, #1e2a4a 100%);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    height: 100%;
    justify-content: flex-start;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 20px;
    margin: 10px 0;
    width: 100%;
    max-width: 300px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, rgba(30, 42, 74, 0.5), rgba(45, 58, 92, 0.5));
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.mobile-nav-link:hover {
    color: #ff6b35;
    border-color: rgba(255, 107, 53, 0.5);
    transform: scale(1.05);
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    width: 100%;
    max-width: 300px;
}

.mobile-btn {
    padding: 15px;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mobile-btn-login {
    background: linear-gradient(145deg, #1e2a4a, #2d3a5c);
    color: #b8c5d6;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.mobile-btn-login:hover {
    color: #ff6b35;
    border-color: rgba(255, 107, 53, 0.5);
}

.mobile-btn-register {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.mobile-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Content area for demo */
.main-content {
    padding: 60px 20px;
    text-align: center;
    color: #b8c5d6;
    max-width: 800px;
    margin: 0 auto;
}

.main-content h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Media Queries */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 10px;
        margin: 0 10px;
    }

    .nav-link {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .btn-login,
    .btn-register {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .nav-cta {
        gap: 6px;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .nav-container {
        height: 70px;
        padding: 0 20px;
    }

    .logo {
        font-size: 1.8rem;
    }

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

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

    .logo {
        font-size: 1.6rem;
    }

    .hamburger {
        width: 25px;
        height: 20px;
    }

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

    .mobile-menu-content {
        padding: 30px 20px;
    }

    .mobile-nav-link {
        font-size: 1.2rem;
        padding: 18px;
        max-width: 280px;
    }

    .mobile-cta {
        max-width: 280px;
    }

    .mobile-btn {
        font-size: 1rem;
        padding: 14px;
    }
}

.banner-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto 40px;
    background: linear-gradient(145deg, #16213e 0%, #0f3460 50%, #1e2a4a 100%);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.banner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35, #f7931e);
    background-size: 400% 400%;
    animation: gradientShift 6s ease infinite;
    padding: 3px;
    border-radius: 25px;
    z-index: -1;
}

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

.banner-content {
    padding: 60px 40px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
}

.banner-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    display: inline-block;
    animation: bounce 2s infinite;
}

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

.banner-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    animation: glow 3s ease-in-out infinite alternate;
    line-height: 1.2;
}

@keyframes glow {
    from {
        text-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
    }
    to {
        text-shadow:
                0 4px 16px rgba(255, 107, 53, 0.6),
                0 0 30px rgba(255, 107, 53, 0.4),
                0 0 50px rgba(247, 147, 30, 0.2);
    }
}

.banner-description {
    font-size: 1.4rem;
    color: #b8c5d6;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.banner-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.banner-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
}

.banner-cta::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;
}

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

.banner-cta::after {
    content: '🎯';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.banner-cta:hover::after {
    opacity: 1;
    right: 15px;
}

/* Decorative elements */
.banner-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.decoration-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.decoration-2 {
    bottom: 20px;
    right: 20px;
    animation-delay: -10s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .banner-content {
        padding: 50px 30px;
    }

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

    .banner-description {
        font-size: 1.2rem;
    }

    .banner-cta {
        padding: 18px 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {

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

    .banner-icon {
        font-size: 3rem;
        margin-bottom: 25px;
    }

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

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

    .banner-cta {
        padding: 16px 35px;
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .banner-decoration {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {

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

    .banner-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .banner-title {
        font-size: 2rem;
        margin-bottom: 18px;
        line-height: 1.3;
    }

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

    .banner-cta {
        padding: 15px 30px;
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .banner-decoration {
        width: 50px;
        height: 50px;
    }

    .decoration-1 {
        top: 15px;
        left: 15px;
    }

    .decoration-2 {
        bottom: 15px;
        right: 15px;
    }
}

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

    .banner-description {
        font-size: 0.9rem;
    }

    .banner-cta {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}

.promo-container {
    max-width: 1400px;
    width: 100%;
    background: linear-gradient(145deg, #16213e 0%, #0f3460 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 0 auto 40px;
}

.promo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    padding: 2px;
    border-radius: 20px;
    z-index: -1;
}

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

.promo-header {
    text-align: center;
    padding: 40px 20px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
}

.promo-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 4px 8px rgba(255, 107, 53, 0.3); }
    to { text-shadow: 0 4px 16px rgba(255, 107, 53, 0.6), 0 0 30px rgba(255, 107, 53, 0.3); }
}

.promo-subtitle {
    font-size: 1.2rem;
    color: #b8c5d6;
    margin-bottom: 30px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px 30px 40px;
}

.promo-card {
    background: linear-gradient(145deg, #1e2a4a 0%, #2d3a5c 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.5);
}

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

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

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

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 15px;
}

.card-description {
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-bonus {
    font-size: 2.2rem;
    font-weight: bold;
    color: #f7931e;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.btn-claim {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
}

.terms {
    text-align: center;
    padding: 20px;
    color: #7a8499;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    background: rgba(0, 0, 0, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

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

    .promo-subtitle {
        font-size: 1rem;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px 20px 30px;
    }

    .promo-card {
        padding: 25px 20px;
    }

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

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

@media (max-width: 480px) {
    .promo-header {
        padding: 30px 15px 15px;
    }

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

    .promo-subtitle {
        font-size: 0.9rem;
    }

    .promo-grid {
        padding: 15px 15px 25px;
    }

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

    .card-title {
        font-size: 1.3rem;
    }

    .card-bonus {
        font-size: 1.6rem;
    }
}

.games-container {
    max-width: 1400px;
    width: 100%;
    background: linear-gradient(145deg, #16213e 0%, #0f3460 50%, #1e2a4a 100%);
    border-radius: 25px;
    overflow: hidden;
    margin: 0 auto 40px;
    position: relative;
    padding: 0 0 20px 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.games-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 300% 300%;
    animation: borderGlow 8s ease infinite;
    padding: 2px;
    border-radius: 25px;
    z-index: -1;
}

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

.games-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(247, 147, 30, 0.08) 100%);
}

.games-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 0 4px 8px rgba(255, 107, 53, 0.3); }
    to { text-shadow: 0 4px 16px rgba(255, 107, 53, 0.6), 0 0 25px rgba(255, 107, 53, 0.3); }
}

.games-subtitle {
    font-size: 1.1rem;
    color: #b8c5d6;
    margin-bottom: 20px;
}

.categories-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.category-link {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(145deg, #1e2a4a, #2d3a5c);
    color: #b8c5d6;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.category-link:hover {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

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

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

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 30px 40px;
}

.game-card {
    background: linear-gradient(145deg, #1e2a4a 0%, #2d3a5c 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.5);
}

.game-image {
    height: 180px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.game-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.game-content {
    padding: 25px;
}

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

.game-description {
    color: #b8c5d6;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.game-features {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    color: #ff6b35;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.play-btn {
    display: block;
    width: 100%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.play-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.4s;
}

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

.jackpot-banner {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    text-align: center;
    padding: 20px;
    margin: 30px 30px 0;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.8); }
    100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
}

.jackpot-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.jackpot-amount {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.jackpot-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.jackpot-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .games-header {
        padding: 30px 25px 25px;
    }

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

    .games-subtitle {
        font-size: 1rem;
    }

    .categories-nav {
        gap: 10px;
        margin-bottom: 25px;
    }

    .category-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 25px 30px;
    }

    .game-image {
        height: 160px;
        font-size: 3.5rem;
    }

    .game-content {
        padding: 20px;
    }

    .jackpot-banner {
        margin: 25px 25px 0;
    }

    .jackpot-title {
        font-size: 1.3rem;
    }

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

@media (max-width: 480px) {

    .games-header {
        padding: 25px 20px 20px;
    }

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

    .games-subtitle {
        font-size: 0.9rem;
    }

    .categories-nav {
        gap: 8px;
    }

    .category-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .games-grid {
        padding: 0 20px 25px;
    }

    .game-image {
        height: 140px;
        font-size: 3rem;
    }

    .game-content {
        padding: 18px;
    }

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

    .game-description {
        font-size: 0.9rem;
    }

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

    .jackpot-banner {
        padding: 18px;
        margin: 20px 20px 0;
    }

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

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

    .jackpot-link {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

.footer {
    background: linear-gradient(145deg, #16213e 0%, #0f3460 50%, #1e2a4a 100%);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35) 1;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 100%;
    animation: borderFlow 4s ease infinite;
}

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

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

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

.footer-section {
    color: #b8c5d6;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 1px;
}

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

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

.footer-link {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-link:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.footer-link::before {
    content: '▶';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.7rem;
    color: #ff6b35;
}

.footer-link:hover::before {
    opacity: 1;
    left: -20px;
}

.contact-info {
    margin-bottom: 20px;
}

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

.contact-icon {
    font-size: 1.2rem;
    margin-right: 12px;
    color: #ff6b35;
    width: 20px;
}

.contact-link {
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #f7931e;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, #1e2a4a, #2d3a5c);
    border-radius: 50%;
    color: #b8c5d6;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

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

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

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

.payment-item {
    background: linear-gradient(145deg, #1e2a4a, #2d3a5c);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    padding: 12px 18px;
    color: #b8c5d6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-item:hover {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-color: rgba(255, 107, 53, 0.5);
    color: #ff6b35;
    transform: translateY(-2px);
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-input {
    width: 100%;
    max-width: 300px;
    padding: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 25px;
    background: rgba(30, 42, 74, 0.5);
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.newsletter-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #7a8499;
    font-size: 0.9rem;
}

.bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

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

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

.licenses {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.license-badge {
    background: linear-gradient(145deg, #1e2a4a, #2d3a5c);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    padding: 8px 15px;
    color: #b8c5d6;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.license-badge:hover {
    border-color: rgba(255, 107, 53, 0.5);
    color: #ff6b35;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-content {
        padding: 40px 20px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }

    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px;
    }

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

    .newsletter-input {
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .bottom-links {
        justify-content: center;
        gap: 20px;
    }

    .licenses {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 10px;
    }
}

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

    .footer-grid {
        gap: 30px;
        margin-bottom: 30px;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .payment-item {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .bottom-links {
        gap: 15px;
    }

    .bottom-link {
        font-size: 0.85rem;
    }

    .license-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
}

/* Typography */
h2, h3 {
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 25px;
    position: relative;
}

h2:first-child {
    margin-top: 0;
}

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

h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    color: #ff6b35;
}

p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #b8c5d6;
}

strong {
    color: #ffffff;
    font-weight: bold;
}

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

li {
    margin-bottom: 8px;
    color: #b8c5d6;
}

ul li::marker {
    color: #ff6b35;
}

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

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 10px;
    background: linear-gradient(145deg, #1e2a4a, #2d3a5c);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

thead {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

th {
    padding: 15px 20px;
    text-align: left;
    font-weight: bold;
    color: white;
    white-space: nowrap;
}

td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    color: #b8c5d6;
}

tbody tr:hover {
    background: rgba(255, 107, 53, 0.05);
}

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

/* First row as header when no thead */
tbody tr:first-child td {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    font-weight: bold;
}

tbody tr:first-child:hover td {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

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

    table {
        min-width: 500px;
    }

    th, td {
        padding: 12px 15px;
    }
}

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

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.2rem;
    }

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

    .table-container {
        margin: 15px -15px;
    }

    table {
        min-width: 400px;
    }

    th, td {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}