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, #1a0d2e 0%, #2d1b4e 30%, #4a2c7a  70%, #6b46c1 100%);
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

/* Header */
header {
    position: relative;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;

    @media(min-width: 768px) {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

.logo {
    background: #e50914;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 1px;
    max-width: max-content;


    @media(min-width: 768px) {
        margin-bottom: 25px;
    }
}

.logo::before {
    content: "🎲";
    margin-right: 0.5rem;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: white;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-item span {
    font-size: 1.2rem;
}

.nav-item .text {
    font-size: 0.8rem;
    font-weight: 500;
}

.nav-item .arrow {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

.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 */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 5rem 2rem 2rem 2rem;
    transition: left 0.3s ease;
    z-index: 999;
}

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

.mobile-menu .nav-item {
    display: block;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* Main Banner */
.banner {
    position: relative;
    padding: 4rem 2rem;
    text-align: left;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    width: 100%;
    /*max-width: 1440px;*/
    margin: 0 auto;

    background: url("../media/banner..webp") no-repeat 0 0;
    background-size: cover;
    background-position: center center
;
}

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

.banner h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.banner p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.get-bonus-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.get-bonus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #ff8c5a, #ffa033);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
}

.coins {
    position: absolute;
}

.coin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #8b5a00;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: float 3s ease-in-out infinite;
}

.coin:nth-child(1) { top: 10%; right: 30%; animation-delay: 0s; }
.coin:nth-child(2) { top: 30%; right: 5%; animation-delay: 0.5s; }
.coin:nth-child(3) { top: 50%; right: 40%; animation-delay: 1s; }
.coin:nth-child(4) { top: 70%; right: 15%; animation-delay: 1.5s; }
.coin:nth-child(5) { top: 15%; right: 60%; animation-delay: 2s; }
.coin:nth-child(6) { top: 45%; right: 70%; animation-delay: 2.5s; }

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

/* Stars Background */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    animation: twinkle 2s infinite;
}

.star:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.star:nth-child(2) { top: 30%; left: 80%; animation-delay: 0.5s; }
.star:nth-child(3) { top: 60%; left: 20%; animation-delay: 1s; }
.star:nth-child(4) { top: 10%; left: 60%; animation-delay: 1.5s; }
.star:nth-child(5) { top: 80%; left: 70%; animation-delay: 2s; }

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .banner p {
        font-size: 1.1rem;
    }

    header {
        padding: 1rem;
    }

    .banner {
        padding: 2rem 1rem;
        text-align: center;
    }

    .floating-elements {
        width: 100%;
        opacity: 0.3;
    }

    .gift-box {
        width: 120px;
        height: 120px;
        right: 5%;
        top: 10%;
    }

    .coin {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}

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

.games-block {
    margin-bottom: 3rem;
}

.block-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.games-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.games-scroll::-webkit-scrollbar {
    height: 8px;
}

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

.games-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.games-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.game-card {
    flex: 0 0 200px;
    height: 280px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem 1rem 1rem;
    color: white;
}

.game-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-provider {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.exclusive-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .game-card {
        flex: 0 0 160px;
        height: 220px;
    }

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

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

    .game-provider {
        font-size: 0.7rem;
    }
}

/* Footer Styles */
footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem 1rem;
    margin-top: auto;
}

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

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    background: #e50914;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 1px;
    display: inline-block;
}

.logo::before {
    content: "🎲";
    margin-right: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-link span {
    font-size: 1.2rem;
}

.footer-link .text {
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-meta a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-meta a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .footer-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }

    .footer-link span {
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-meta {
        justify-content: center;
    }

    .logo {
        font-size: 1.2rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Animated background effect */
footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #3b82f6, #8b5cf6);
    background-size: 400% 100%;
    animation: gradientShift 8s ease infinite;
}

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


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

.content-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

ul, ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

ul li {
    list-style-type: none;
    position: relative;
}

ul li::before {
    content: "🎲";
    position: absolute;
    left: -1.5rem;
    top: 0;
}

ol li {
    margin-bottom: 1rem;
}

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

/* Table Styles */
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

th, td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    color: rgba(255, 255, 255, 0.9);
}

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

tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

/* Special content highlights */
.highlight-box {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    margin-top: 0;
    color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-container {
        padding: 1rem;
    }

    .content-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

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

    .table-wrapper {
        margin: 1.5rem -1.5rem;
        border-radius: 0;
    }

    table {
        min-width: 500px;
    }

    th, td {
        padding: 0.8rem 1rem;
    }

    ul, ol {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 1.5rem 1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem;
    }

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

    .table-wrapper {
        margin: 1rem -1rem;
    }

    table {
        min-width: 400px;
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.6rem 0.8rem;
    }
}

/* Custom scrollbar for tables */
.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

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

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

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.bonus-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bonus-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

.panda-wealth {
    background: linear-gradient(45deg, #4c1d95, #7c3aed, #f59e0b);
}

.dragon-age {
    background: linear-gradient(45deg, #dc2626, #ea580c, #f59e0b);
}

.game-content {
    padding: 1.5rem;
}

.game-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
}

.wager-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.fs-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.fs-option {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.6rem 0.4rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fs-option.active {
    background: linear-gradient(45deg, #f59e0b, #f97316);
    border-color: #f59e0b;
    color: white;
}

.fs-option:hover:not(.active) {
    background: rgba(255, 255, 255, 0.2);
}

.fs-100 {
    grid-column: span 4;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
    font-size: 1rem;
}

.purchase-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cp-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
}

.cp-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #f59e0b, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.buy-button {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.buy-button:hover {
    background: linear-gradient(45deg, #16a34a, #15803d);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.buy-button:active {
    transform: translateY(0);
}

/* Decorative elements for games */
.panda-wealth::before {
    content: "🐼";
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

.panda-wealth::after {
    content: "🏮🌸";
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

.dragon-age::before {
    content: "🐉";
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

.dragon-age::after {
    content: "⚔️🔥";
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .game-content {
        padding: 1rem;
    }

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

    .purchase-section {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .buy-button {
        width: 100%;
        padding: 1rem;
    }

    .fs-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .fs-option {
        padding: 0.8rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .game-image {
        height: 150px;
    }

    .fs-options {
        grid-template-columns: 1fr 1fr;
    }

    .cp-price {
        justify-content: center;
    }
}

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

.bonus-card {
    animation: slideInUp 0.6s ease forwards;
}

.bonus-card:nth-child(2) {
    animation-delay: 0.1s;
}

.bonus-card:nth-child(3) {
    animation-delay: 0.2s;
}

.bonus-card:nth-child(4) {
    animation-delay: 0.3s;
}