* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #8e44ad;
    transition: color 0.3s ease;
}

a:hover {
    color: #9b59b6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: #6a1b9a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 38px;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-register {
    background-color: #ff9800;
    border: 2px solid #ff9800;
    color: #fff;
}

.btn-register:hover {
    background-color: #f57c00;
    border-color: #f57c00;
    color: #fff;
}

/* ===== HERO BONUS SECTION ===== */
.hero-bonus {
    position: relative;
    background:
        radial-gradient(ellipse at top, #3b1170 0%, transparent 55%),
        radial-gradient(ellipse at bottom right, #0a2540 0%, transparent 60%),
        linear-gradient(160deg, #0d0524 0%, #1a0b3d 50%, #2d1b69 100%);
    padding: 40px 0 70px;
    overflow: hidden;
    min-height: 600px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    perspective: 800px;
}

/* Rotating conic light rays from behind the card */
.ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1400px;
    height: 1400px;
    transform-origin: center;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 152, 0, 0.08) 25deg,
        transparent 50deg,
        transparent 130deg,
        rgba(123, 31, 162, 0.1) 150deg,
        transparent 180deg,
        transparent 270deg,
        rgba(0, 188, 212, 0.08) 295deg,
        transparent 320deg
    );
    animation: raySpin 30s linear infinite;
    opacity: 0.9;
}

.ray-1 {
    margin: -700px 0 0 -700px;
    animation-duration: 28s;
}

.ray-2 {
    margin: -700px 0 0 -700px;
    animation-duration: 45s;
    animation-direction: reverse;
    filter: hue-rotate(60deg);
    opacity: 0.6;
}

.ray-3 {
    margin: -700px 0 0 -700px;
    width: 900px;
    height: 900px;
    margin-left: -450px;
    margin-top: -450px;
    animation-duration: 18s;
    opacity: 0.5;
}

.ray-4 {
    margin: -700px 0 0 -700px;
    width: 1100px;
    height: 1100px;
    margin-left: -550px;
    margin-top: -550px;
    animation-duration: 22s;
    animation-direction: reverse;
    filter: hue-rotate(120deg);
    opacity: 0.4;
}

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

/* Falling casino icons (coins, gems, dice, crowns) */
.falling {
    position: absolute;
    top: -50px;
    color: rgba(255, 200, 80, 0.45);
    font-size: 1.6rem;
    animation: iconFall linear infinite;
    text-shadow: 0 0 10px rgba(255, 180, 50, 0.4);
}

.falling-1 { left: 8%;  font-size: 1.8rem; animation-duration: 11s; animation-delay: 0s; color: rgba(255, 200, 80, 0.5); }
.falling-2 { left: 18%; font-size: 1.3rem; animation-duration: 14s; animation-delay: -3s; color: rgba(180, 220, 255, 0.45); }
.falling-3 { left: 32%; font-size: 1.5rem; animation-duration: 9s;  animation-delay: -1.5s; }
.falling-4 { left: 47%; font-size: 1.7rem; animation-duration: 13s; animation-delay: -5s; color: rgba(255, 215, 100, 0.5); }
.falling-5 { left: 63%; font-size: 1.4rem; animation-duration: 12s; animation-delay: -7s; }
.falling-6 { left: 75%; font-size: 1.6rem; animation-duration: 10s; animation-delay: -2s; color: rgba(255, 170, 200, 0.4); }
.falling-7 { left: 86%; font-size: 1.3rem; animation-duration: 15s; animation-delay: -4s; }
.falling-8 { left: 93%; font-size: 1.5rem; animation-duration: 11s; animation-delay: -6s; color: rgba(180, 220, 255, 0.45); }

@keyframes iconFall {
    0% {
        transform: translateY(-60px) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(720px) rotate(540deg);
        opacity: 0;
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-cta-buttons {
    display: flex;
    width: 100%;
    max-width: 420px;
    justify-content: center;
}

.btn-hero-register {
    flex: 1;
    text-align: center;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    color: #4a148c;
    border: 2px solid #fff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.btn-hero-register::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    animation: btnRipple 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes btnRipple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.25); opacity: 0; }
}

.btn-hero-register:hover {
    color: #4a148c;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
}

.hero-card {
    width: 100%;
    max-width: 480px;
    background: linear-gradient(160deg, rgba(20, 10, 60, 0.85), rgba(60, 20, 120, 0.75));
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    animation: cardEnter 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cardEnter {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-eyebrow {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 6px;
    opacity: 0.95;
}

.hero-brand {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.95;
}

.bonus-amount {
    margin: 10px 0 18px;
    line-height: 1;
}

.amount-number,
.amount-currency {
    display: block;
    font-weight: 800;
    color: #fff;
    position: relative;
    animation: neonFlicker 4.5s ease-in-out infinite;
}

.amount-number {
    font-size: 4.5rem;
    letter-spacing: -2px;
    text-shadow:
        0 0 8px #fff,
        0 0 18px rgba(255, 215, 0, 0.9),
        0 0 35px rgba(255, 152, 0, 0.7),
        0 0 55px rgba(255, 80, 0, 0.5);
}

.amount-currency {
    font-size: 3.5rem;
    margin-top: 4px;
    animation-delay: 0.4s;
    text-shadow:
        0 0 8px #fff,
        0 0 18px rgba(0, 220, 255, 0.85),
        0 0 35px rgba(0, 150, 255, 0.65),
        0 0 55px rgba(0, 100, 200, 0.5);
}

@keyframes neonFlicker {
    0%, 100%   { opacity: 1; }
    8%, 10%    { opacity: 0.5; }
    9%         { opacity: 1; }
    40%, 42%   { opacity: 0.6; }
    41%        { opacity: 1; }
    72%, 74%   { opacity: 0.7; }
    73%        { opacity: 1; }
}

/* Casino chip stack — 3D Y-axis spin with rotating rings */
.bonus-chips {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 25px auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-chips i {
    font-size: 5.2rem;
    color: #ffc107;
    text-shadow:
        0 0 18px rgba(255, 200, 50, 0.9),
        0 0 35px rgba(255, 152, 0, 0.6);
    z-index: 3;
    position: relative;
    animation: chipSpin 4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
    transform-style: preserve-3d;
}

@keyframes chipSpin {
    0%   { transform: rotateY(0deg) scale(1); }
    50%  { transform: rotateY(180deg) scale(1.08); }
    100% { transform: rotateY(360deg) scale(1); }
}

.chip-halo {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(255, 152, 0, 0.7),
        rgba(255, 215, 0, 0.3),
        rgba(255, 80, 0, 0.5),
        rgba(255, 215, 0, 0.3),
        rgba(255, 152, 0, 0.7)
    );
    filter: blur(20px);
    animation: haloRotate 6s linear infinite;
    z-index: 1;
}

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

.chip-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 200, 50, 0.55);
    z-index: 2;
    pointer-events: none;
    animation: ringExpand 2.6s ease-out infinite;
}

.chip-ring-1 {
    inset: 10%;
    animation-delay: 0s;
}

.chip-ring-2 {
    inset: 10%;
    animation-delay: 1.3s;
    border-color: rgba(0, 220, 255, 0.55);
}

@keyframes ringExpand {
    0%   { transform: scale(0.6); opacity: 0.9; border-width: 3px; }
    100% { transform: scale(1.8); opacity: 0;   border-width: 1px; }
}

.bonus-spins {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 6px 0 28px;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

/* Bonus button — pulsing emanating rings + 3D press */
.btn-bonus {
    display: inline-block;
    background: linear-gradient(135deg, #00c853, #64dd17);
    color: #fff;
    padding: 18px 60px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow:
        0 10px 25px rgba(0, 200, 83, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -3px 0 rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    position: relative;
    border: none;
}

.btn-bonus span {
    position: relative;
    z-index: 2;
}

.btn-bonus::before,
.btn-bonus::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    border: 2px solid rgba(100, 221, 23, 0.7);
    animation: bonusRipple 2.4s ease-out infinite;
    pointer-events: none;
    z-index: 1;
}

.btn-bonus::after {
    animation-delay: 1.2s;
}

@keyframes bonusRipple {
    0%   { transform: scale(1);    opacity: 0.9; }
    100% { transform: scale(1.35); opacity: 0;   }
}

.btn-bonus:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 18px 35px rgba(0, 200, 83, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-bonus:active {
    transform: translateY(0);
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #6a1b9a;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #6a1b9a, #9b59b6);
    border-radius: 2.5px;
}

.casino-experience {
    background-color: #fff;
}

.page-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #6a1b9a;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 60px;
    color: #555;
}

.page-intro strong {
    color: #6a1b9a;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.experience-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.experience-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.experience-image:hover img {
    transform: scale(1.05);
}

.experience-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(106, 27, 154, 0.7), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.experience-image:hover::before {
    opacity: 1;
}

.experience-text h2 {
    font-size: 2rem;
    color: #6a1b9a;
    margin-bottom: 20px;
    font-weight: 700;
}

.experience-text p {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.experience-text p strong {
    color: #6a1b9a;
}

.experience-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #f3e5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a1b9a;
    font-size: 1.5rem;
}

.feature-text h4 {
    font-size: 1.15rem;
    color: #6a1b9a;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== TABLE ===== */
.quick-facts {
    margin-top: 30px;
}

.facts-title {
    font-size: 1.6rem;
    color: #6a1b9a;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.quick-facts table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.quick-facts th {
    background: linear-gradient(135deg, #6a1b9a, #4a148c);
    color: #fff;
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.05rem;
}

.quick-facts td {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
}

.quick-facts tr:nth-child(even) td {
    background-color: #fafafa;
}

.quick-facts tr:last-child td {
    border-bottom: none;
}

.quick-facts td:first-child {
    font-weight: 600;
    color: #6a1b9a;
    width: 35%;
}

.post-table-text {
    margin-top: 40px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.post-table-text strong {
    color: #6a1b9a;
}

/* ===== GAMES GRID ===== */
.games-section {
    background-color: #f8f9fa;
}

.games-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
}

.games-intro strong {
    color: #6a1b9a;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 18px;
}

.game-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #6a1b9a, #4a148c);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

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

.game-card .game-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 12px 12px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(106, 27, 154, 0.35);
}

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

.game-card:hover .game-name {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PAYMENT METHODS ===== */
.payment-methods-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.payment-methods-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/payments/tr_papara.svg') no-repeat;
    background-size: 300px;
    opacity: 0.03;
    z-index: 0;
}

.payment-content {
    position: relative;
    z-index: 1;
}

.payment-info {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.payment-info p {
    font-size: 1.1rem;
}

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

.payment-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(106, 27, 154, 0.15);
}

.payment-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-card-icon img {
    max-width: 100%;
    max-height: 100%;
}

.payment-card h3 {
    font-size: 1.4rem;
    color: #6a1b9a;
    margin-bottom: 15px;
}

.payment-card p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.payment-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 0;
}

.payment-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.payment-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* ===== CTA ===== */
.cta-section {
    background-image: url('images/banners/merhabet-casino.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 90px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(106, 27, 154, 0.85), rgba(74, 20, 140, 0.9));
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.6rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
}

.btn-cta {
    background: linear-gradient(135deg, #ff9800, #ffa726);
    color: #fff;
    padding: 16px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.5);
}

/* ===== FOOTER ===== */
footer {
    background-color: #4a148c;
    padding: 60px 0 20px;
    color: #fff;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.6rem;
    color: #ff9800;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ff9800;
    text-align: center;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.payment-methods img {
    height: 40px;
    filter: grayscale(100%) brightness(2);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.payment-methods img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #7b1fa2;
}

.footer-bottom p {
    color: #ce93d8;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .section-title { font-size: 2.1rem; }
    .page-title { font-size: 2.3rem; }
    .experience-content { grid-template-columns: 1fr; }
    .experience-image { order: -1; }
    .experience-features { grid-template-columns: 1fr 1fr; }
    .games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
}

@media (max-width: 768px) {
    .header-buttons .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .hero-bonus {
        padding: 25px 0 50px;
        min-height: auto;
    }

    .hero-container {
        gap: 25px;
    }

    .hero-cta-buttons {
        max-width: 360px;
    }

    .btn-hero-register {
        padding: 14px 22px;
        font-size: 0.9rem;
    }

    .hero-card {
        padding: 32px 22px;
        border-radius: 24px;
    }

    .hero-eyebrow,
    .hero-brand {
        font-size: 1.2rem;
    }

    .amount-number {
        font-size: 3.8rem;
        letter-spacing: -1px;
    }

    .amount-currency {
        font-size: 3rem;
    }

    .bonus-chips {
        width: 110px;
        height: 110px;
        margin: 20px auto 14px;
    }

    .bonus-chips i {
        font-size: 4.4rem;
    }

    .bonus-spins {
        font-size: 1.3rem;
        margin: 4px 0 22px;
    }

    .btn-bonus {
        padding: 15px 48px;
        font-size: 1rem;
    }

    .falling {
        font-size: 1.3rem;
    }

    .section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; margin-bottom: 35px; }
    .page-title { font-size: 1.9rem; }
    .page-intro { font-size: 1.05rem; margin-bottom: 40px; }
    .experience-text h2 { font-size: 1.6rem; }
    .experience-features { grid-template-columns: 1fr; }
    .payment-grid { grid-template-columns: 1fr; }
    .games-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; }
    .game-card .game-name { font-size: 0.75rem; padding: 18px 8px 9px; opacity: 1; transform: translateY(0); }
    .cta-content h2 { font-size: 2.1rem; }
    .cta-content p { font-size: 1.05rem; }
    .quick-facts th, .quick-facts td { padding: 12px 14px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .header-container { gap: 10px; }
    .header-buttons { gap: 8px; }
    .header-buttons .btn {
        padding: 7px 12px;
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }
    .logo img { height: 32px; }

    .hero-bonus { padding: 20px 0 40px; }

    .hero-cta-buttons {
        max-width: 100%;
    }

    .btn-hero-register {
        padding: 13px 18px;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .hero-card {
        padding: 26px 18px;
    }

    .hero-eyebrow,
    .hero-brand {
        font-size: 1.05rem;
    }

    .amount-number { font-size: 3rem; }
    .amount-currency { font-size: 2.4rem; }

    .bonus-chips {
        width: 92px;
        height: 92px;
        margin: 18px auto 12px;
    }

    .bonus-chips i { font-size: 3.6rem; }
    .bonus-spins { font-size: 1.15rem; margin: 4px 0 18px; }

    .btn-bonus {
        padding: 13px 36px;
        font-size: 0.9rem;
        letter-spacing: 0.8px;
    }

    .falling { font-size: 1.1rem; }
    .ray { opacity: 0.6; }

    .page-title { font-size: 1.6rem; }
    .section-title { font-size: 1.5rem; }
    .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .game-card .game-name { font-size: 0.7rem; }
    .cta-content h2 { font-size: 1.7rem; }
    .btn-cta { padding: 13px 32px; font-size: 1rem; }
}
