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: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    flex-shrink: 0;
}

.logo-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #4F94EF, #3B82F6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
    color: #4F94EF;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-item a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    font-size: 14px;
}

.nav-item.active a {
    color: #4F94EF;
    border-bottom: 2px solid #4F94EF;
}

.nav-item a:hover {
    color: #4F94EF;
    background: rgba(79, 148, 239, 0.1);
}

.live-badge {
    background: #ff4757;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    position: absolute;
    top: -5px;
    right: -5px;
    font-weight: bold;
}

.auth-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    white-space: nowrap;
}

.btn-login {
    background: transparent;
    color: #4F94EF;
    border: 2px solid #4F94EF;
}

.btn-login:hover {
    background: #4F94EF;
    color: white;
}

.btn-signup {
    background: #4F94EF;
    color: white;
}

.btn-signup:hover {
    background: #3B82F6;
    transform: translateY(-1px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Mobile Styles */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 15px;
    }

    .nav-item a {
        font-size: 13px;
        padding: 6px 8px;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        gap: 10px;
    }

    .nav-item a {
        font-size: 12px;
        padding: 6px 6px;
    }
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
        overflow-y: auto;
        max-height: calc(100vh - 60px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 10px 0;
        width: 100%;
    }

    .nav-item a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        white-space: normal;
    }

    .hamburger {
        display: flex;
    }

    .auth-buttons {
        display: none;
    }

    .mobile-auth {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        border-top: 1px solid #eee;
        margin-top: 20px;
    }

    .mobile-auth .btn {
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 12px 20px;
    }
}

@media (min-width: 901px) {
    .mobile-auth {
        display: none;
    }
}

/* Demo content */
.content {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    color: white;
    text-align: center;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.banner {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 30%, #2c5aa0 70%, #1e3a8a 100%);
    overflow: hidden;

    padding: 0 60px;

    .container_banner {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 15% 25%, rgba(255,255,255,0.1) 0%, transparent 50%),
            radial-gradient(circle at 85% 75%, rgba(135,206,235,0.15) 0%, transparent 40%),
            linear-gradient(45deg, rgba(255,255,255,0.03) 0%, transparent 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}

.banner h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
    letter-spacing: -1px;
}

.banner-amount {
    font-size: 4rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow:
            3px 3px 6px rgba(0,0,0,0.4),
            0 0 20px rgba(255,215,0,0.5);
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.banner-bonus {
    font-size: 1.4rem;
    color: #4ECDC4;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #4F94EF, #357abd);
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
            0 8px 20px rgba(79, 148, 239, 0.4),
            inset 0 2px 0 rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.cta-button:hover {
    background: linear-gradient(45deg, #357abd, #2c5aa0);
    transform: translateY(-3px);
    box-shadow:
            0 12px 25px rgba(79, 148, 239, 0.5),
            inset 0 2px 0 rgba(255,255,255,0.3);
}

.ice-elements {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    z-index: 1;
}

.ice-cube {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 50%, #E0F6FF 100%);
    border-radius: 20px;
    box-shadow:
            0 0 30px rgba(135, 206, 235, 0.4),
            inset 0 4px 8px rgba(255,255,255,0.3);
    animation: iceCubeFloat 4s ease-in-out infinite;
}

.ice-cube:nth-child(1) {
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.ice-cube:nth-child(2) {
    top: 120px;
    right: 30px;
    animation-delay: 1s;
    width: 100px;
    height: 100px;
}

.ice-cube:nth-child(3) {
    bottom: 50px;
    left: 20px;
    animation-delay: 2s;
    width: 80px;
    height: 80px;
}

.ice-cube::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 30%;
    height: 30%;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    filter: blur(2px);
}

.ice-cube::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 20%;
    height: 20%;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    filter: blur(1px);
}

.snowflakes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    color: rgba(255,255,255,0.8);
    font-size: 20px;
    animation: snowfall 8s linear infinite;
}

.snowflake:nth-child(1) { left: 10%; animation-delay: 0s; font-size: 16px; }
.snowflake:nth-child(2) { left: 20%; animation-delay: 1s; font-size: 24px; }
.snowflake:nth-child(3) { left: 30%; animation-delay: 2s; font-size: 18px; }
.snowflake:nth-child(4) { left: 40%; animation-delay: 3s; font-size: 22px; }
.snowflake:nth-child(5) { left: 50%; animation-delay: 4s; font-size: 16px; }
.snowflake:nth-child(6) { left: 60%; animation-delay: 5s; font-size: 20px; }
.snowflake:nth-child(7) { left: 70%; animation-delay: 6s; font-size: 18px; }
.snowflake:nth-child(8) { left: 80%; animation-delay: 7s; font-size: 24px; }
.snowflake:nth-child(9) { left: 90%; animation-delay: 1.5s; font-size: 16px; }

.floating-coins {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-coin {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #FFD700, #FFED4E);
    border-radius: 50%;
    animation: coinFloat 6s ease-in-out infinite;
    opacity: 0.8;
    box-shadow: 0 0 15px rgba(255,215,0,0.4);
}

.floating-coin::before {
    content: '$';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    color: #B8860B;
    font-size: 14px;
}

.floating-coin:nth-child(1) { top: 15%; left: 15%; animation-delay: 0s; }
.floating-coin:nth-child(2) { top: 25%; right: 20%; animation-delay: 1s; }
.floating-coin:nth-child(3) { top: 70%; left: 25%; animation-delay: 2s; }
.floating-coin:nth-child(4) { bottom: 20%; right: 30%; animation-delay: 3s; }

@keyframes iceCubeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        filter: brightness(1);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
        filter: brightness(1.1);
    }
}

@keyframes snowfall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes coinFloat {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) scale(1.1) rotate(120deg);
    }
    66% {
        transform: translateY(-5px) scale(0.9) rotate(240deg);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .banner {
        min-height: 400px;
        padding: 20px;
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

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

    .banner-amount {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .banner-bonus {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

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

    .ice-elements {
        position: absolute;
        right: 20px;
        top: 20px;
        width: 200px;
        height: 200px;
        opacity: 0.3;
    }

    .ice-cube {
        width: 60px;
        height: 60px;
    }

    .ice-cube:nth-child(2) {
        width: 50px;
        height: 50px;
    }

    .ice-cube:nth-child(3) {
        width: 40px;
        height: 40px;
    }

    .floating-coin {
        width: 25px;
        height: 25px;
    }

    .floating-coin::before {
        font-size: 12px;
    }

    .snowflake {
        font-size: 14px;
    }
}

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

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

    .banner-bonus {
        font-size: 1rem;
    }

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


.branded-games-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.branded-games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 20%, rgba(255,255,255,0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(79, 148, 239, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: end;
}

.game-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
            0 10px 30px rgba(79, 148, 239, 0.2),
            0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
            0 20px 40px rgba(79, 148, 239, 0.3),
            0 10px 25px rgba(0,0,0,0.15);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(79, 148, 239, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.game-card:hover::before {
    opacity: 1;
}

.game-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.game-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.big-bass-ice {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
}

.ice-express-hot {
    background: linear-gradient(135deg, #0369a1, #0284c7, #0ea5e9);
}

.ice-casino-gifts {
    background: linear-gradient(135deg, #1e40af, #3b82f6, #6366f1);
}

.ice-mega-fruit {
    background: linear-gradient(135deg, #1e3a8a, #2563eb, #3b82f6);
}

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.exclusive-badge {
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    color: white;
}

.hot-badge {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
}

.new-badge {
    background: linear-gradient(45deg, #A8E6CF, #7FCDCD);
    color: #2d5a87;
}

.game-logo {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

.game-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.game-logo-text {
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
}

.game-info {
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.game-category {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-link {
    display: inline-block;
    background: linear-gradient(45deg, #4F94EF, #357abd);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(79, 148, 239, 0.3);
}

.play-link:hover {
    background: linear-gradient(45deg, #357abd, #2c5aa0);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 148, 239, 0.4);
}

.ice-crystals {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ice-crystal {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(255,255,255,0.3), rgba(135,206,235,0.2));
    transform: rotate(45deg);
    border-radius: 8px;
    animation: crystalFloat 8s ease-in-out infinite;
    opacity: 0.6;
}

.ice-crystal:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.ice-crystal:nth-child(2) { top: 20%; right: 15%; animation-delay: 2s; }
.ice-crystal:nth-child(3) { bottom: 15%; left: 20%; animation-delay: 4s; }
.ice-crystal:nth-child(4) { bottom: 25%; right: 10%; animation-delay: 6s; }

@keyframes crystalFloat {
    0%, 100% {
        transform: rotate(45deg) translateY(0px);
        opacity: 0.6;
    }
    50% {
        transform: rotate(45deg) translateY(-20px);
        opacity: 0.8;
    }
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .branded-games-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

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

    .game-image {
        height: 140px;
    }

    .game-logo-text {
        font-size: 1.3rem;
    }

    .game-info {
        padding: 15px;
    }

    .ice-crystal {
        width: 30px;
        height: 30px;
    }

    .game-category {
        font-size: 0.8rem;
    }

    .play-link {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .game-image {
        height: 160px;
    }

    .game-logo-text {
        font-size: 1.5rem;
    }

    .play-link {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    color: #bdc3c7;
    padding: 60px 20px 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 30%, rgba(79, 148, 239, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(135, 206, 235, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.footer-column {
    position: relative;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ecf0f1;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    line-height: 1.4;
}

.footer-links a:hover {
    color: #4F94EF;
    padding-left: 5px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #4F94EF;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -8px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.ice-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(135, 206, 235, 0.1), rgba(176, 224, 230, 0.05));
    border-radius: 50%;
    animation: iceFloat 8s ease-in-out infinite;
}

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

.ice-decoration:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
    width: 40px;
    height: 40px;
}

.ice-decoration:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
    width: 50px;
    height: 50px;
}

@keyframes iceFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.5;
    }
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .footer-grid {
        gap: 40px;
    }

    .footer-links {
        gap: 10px 25px;
    }
}

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

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

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

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

    .ice-decoration {
        display: none;
    }
}

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

    .footer-grid {
        gap: 30px;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 0.8rem;
    }
}

.games-showcase {
    max-width: 1400px;
    margin: 20px auto;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.games-showcase-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.game-item {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.game-thumbnail {
    width: 100%;
    height: 140px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-status-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.status-new {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
}

.status-pre-release {
    background: linear-gradient(45deg, #E91E63, #C2185B);
    color: white;
}

.game-name {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-align: left;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Remove background classes as we now use img tags */

.game-title-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    color: white;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 2;
    font-size: 16px;
    text-align: center;
}

.load-more-section {
    text-align: center;
}

.load-more-button {
    display: inline-block;
    background: linear-gradient(45deg, #4F94EF, #357abd);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(79, 148, 239, 0.3);
}

.load-more-button:hover {
    background: linear-gradient(45deg, #357abd, #2c5aa0);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(79, 148, 239, 0.4);
}

/* Tablet Styles */
@media (max-width: 1400px) {
    .games-showcase-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 15px;
    }
}

@media (max-width: 1024px) {
    .games-showcase-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }

    .game-thumbnail {
        height: 120px;
    }

    .game-title-overlay {
        font-size: 14px;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 768px) {
    .games-showcase {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .games-showcase-grid {
        display: flex;
        overflow-x: auto;
        grid-template-columns: none;
        gap: 15px;
        padding-bottom: 10px;
        margin-bottom: 30px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .games-showcase-grid::-webkit-scrollbar {
        height: 4px;
    }

    .games-showcase-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }

    .games-showcase-grid::-webkit-scrollbar-thumb {
        background: #4F94EF;
        border-radius: 4px;
    }

    .games-showcase-grid::-webkit-scrollbar-thumb:hover {
        background: #357abd;
    }

    .game-item {
        flex: 0 0 140px;
        width: 140px;
    }

    .game-thumbnail {
        height: 100px;
    }

    .game-name {
        font-size: 12px;
        margin-top: 8px;
    }

    .game-title-overlay {
        font-size: 12px;
        bottom: 8px;
        left: 8px;
        right: 8px;
    }

    .game-status-badge {
        top: 6px;
        right: 6px;
        padding: 3px 6px;
        font-size: 9px;
    }
}

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

    .games-showcase {
        padding: 15px 10px;
    }

    .game-item {
        flex: 0 0 120px;
        width: 120px;
    }

    .game-thumbnail {
        height: 90px;
    }

    .game-title-overlay {
        font-size: 11px;
    }

    .load-more-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

.content-section {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 20%, rgba(79, 148, 239, 0.02) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(135, 206, 235, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.content-section > * {
    position: relative;
    z-index: 2;
}

/* Content Spacing */
.content-section > *:first-child {
    margin-top: 0;
}

.content-section > *:last-child {
    margin-bottom: 0;
}

/* Headings */
.main-heading {
    color: #1e3a8a;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
}

.main-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4F94EF, #87CEEB);
    border-radius: 2px;
}

.section-heading {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 2rem;
    margin: 40px 0 20px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 10px;
}

.section-heading:first-child {
    margin-top: 0;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4F94EF, #87CEEB);
    border-radius: 2px;
}

.sub-heading {
    color: #2563eb;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 30px 0 15px;
    line-height: 1.3;
}

/* Paragraphs */
.content-paragraph {
    margin: 20px 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.content-paragraph strong {
    color: #1e3a8a;
    font-weight: 700;
}

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

.content-list-item {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

.content-list-item::before {
    content: '❄️';
    position: absolute;
    left: 0;
    top: 0;
    color: #4F94EF;
    font-size: 14px;
}

.ordered-list {
    counter-reset: list-counter;
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.ordered-list-item {
    margin: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    counter-increment: list-counter;
}

.ordered-list-item::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #4F94EF, #87CEEB);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

/* Tables */
.table-container {
    margin: 30px 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: white;
}

.content-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.table-header {
    background: linear-gradient(135deg, #4F94EF, #357abd);
    color: white;
}

.table-header-cell {
    padding: 15px 12px;
    text-align: left;
    font-weight: 700;
    border: none;
}

.table-row {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

.table-row:hover {
    background-color: #f8fafc;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 12px;
    border: none;
    color: #4a5568;
}

.table-cell strong {
    color: #1e3a8a;
    font-weight: 600;
}

/* FAQ Section */
.faq-question {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 25px 0 10px;
    line-height: 1.4;
}

.faq-answer {
    color: #4a5568;
    margin: 0 0 20px;
    line-height: 1.6;
}

/* Special Highlights */
.highlight-box {
    background: linear-gradient(135deg, #e3f2fd, #f0f8ff);
    border-left: 4px solid #4F94EF;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(79, 148, 239, 0.1);
}

.highlight-box .content-paragraph {
    margin: 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }

    .content-section {
        padding: 40px 20px;
        margin-bottom: 30px;
    }

    .main-heading {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .section-heading {
        font-size: 1.5rem;
        margin: 30px 0 15px;
    }

    .sub-heading {
        font-size: 1.3rem;
        margin: 25px 0 12px;
    }

    .content-paragraph {
        font-size: 0.95rem;
        margin: 15px 0;
    }

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

    .content-table {
        font-size: 0.85rem;
        min-width: 500px;
    }

    .table-header-cell,
    .table-cell {
        padding: 10px 8px;
    }

    .content-list-item,
    .ordered-list-item {
        font-size: 0.95rem;
    }
}

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

    .section-heading {
        font-size: 1.3rem;
    }

    .sub-heading {
        font-size: 1.2rem;
    }

    .content-paragraph,
    .content-list-item,
    .ordered-list-item {
        font-size: 0.9rem;
    }

    .content-table {
        min-width: 450px;
        font-size: 0.8rem;
    }
}