@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,400;1,400&display=swap');

:root {
    --primary-color: #FFD700;
    --primary-hover: #FFE44D;
    --header-bg-color: #430313;
    --site-bg-color: #212d39;
    --text-color: #FFFFFF;
    --nav-hover-color: rgba(255, 255, 255, 0.1);
    --accent-color: #FF4D4D;
    --accent-hover: #FF6666;
    --font-primary: 'Fira Sans', sans-serif;
    --card-bg: rgba(67, 3, 19, 0.8);
    --header-border: rgba(255, 255, 255, 0.05);
    --button-bg: #E6E6E6;
    --button-text: #430313;
    --button-hover: #FFFFFF;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

body {
    font-family: var(--font-primary);
    font-style: italic;
    background-color: var(--site-bg-color);
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 56px;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
}


h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    line-height: 1.2;
}

h2, .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: left;
}

@media (max-width: 768px) {
    h2, .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.75rem;
    }
}

@media (max-width: 480px) {
    h2, .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Specific section title alignments */
.popular-slots .section-title {
    margin-bottom: 16px;
}

.about-section .section-title,
.mobile-app-section .section-title {
    text-align: left;
}

/* FAQ section specific alignment */
.faq-section .section-title,
.faq-section h2,
.bonus-promo h2 {
    text-align: center;
}

.faq-section h2 {
    text-align: center;
}

/* Base h2 and section title styles */
.section-title {
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--text-color);
}

.dfj4-casino-info h2,
.info-block h2,
.split-text h2,
.quick-info-section .section-title,
.faq-section .section-title,
.about-section .section-title,
.recent-earnings-section .section-title,
.mobile-app-section .section-title,
.reviews-section .section-title {
    font-size: inherit;
}

/* Media queries for responsive font sizes */
@media (max-width: 768px) {
    .info-block h2,
    .quick-info-section .section-title,
    .about-section .section-title,
    .recent-earnings-section .section-title,
    .reviews-section .section-title {
        font-size: inherit;
    }
}

@media (max-width: 480px) {
    .info-block h2,
    .split-text h2,
    .quick-info-section .section-title,
    .about-section .section-title,
    .recent-earnings-section .section-title,
    .reviews-section .section-title {
        font-size: inherit;
    }
}

p {
    margin-bottom: var(--spacing-md);
    font-style: normal !important;
}

a {
    color: var(--text-color);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}


.site-header {
    background-color: var(--header-bg-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--header-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    height: 56px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
}

.logo img {
    height: 2rem;
    width: auto;
    display: block;
}

/* Header Button */
.header-right .btn {
    min-width: auto;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(to bottom, #e6e6e6 0%, #cccccc 100%);
    color: #000000;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 6px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: 1px solid #999999;
    box-shadow: 0 1.5px 0 #666666;
    letter-spacing: 1px;
    position: relative;
}

.header-right .btn:hover {
    background: linear-gradient(to bottom, #f0f0f0 0%, #d9d9d9 100%);
}

/* Responsive header styles */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }
    
    body {
        padding-top: 56px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
        height: 56px;
    }
    
    .logo img {
        height: 2rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    font-weight: 800;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    text-transform: uppercase;
    border: 3px solid #000000;
    box-shadow: 0 2px 0 #000000;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    position: relative;
    min-width: 160px;
    text-align: center;
}

.btn:hover {
    background-color: #FFDF00;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Slot Cards */
.slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0;
    justify-content: center;
}

.slot-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    width: 173px;
    height: 242px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.slot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.slot-card:hover .slot-overlay {
    opacity: 1;
}

.slot-title {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.slot-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 140px;
}

.slot-button {
    display: block;
    padding: 0.5rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
}

.play-button {
    background-color: var(--primary-color);
    color: var(--button-text);
    border: none;
}

.play-button:hover {
    background-color: var(--primary-hover);
}

.demo-button {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.demo-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Keeping only the slot card background images that are actually used */
.coin-strike {
    background-image: url('./images/flame-fortune.webp');
}

.ultra-luck {
    background-image: url('./images/flame-fruits-frenzy.webp');
}

.book-of-tribes {
    background-image: url('./images/stormforged.webp');
}

.king-elvis {
    background-image: url('./images/joker-cashpot.webp');
}

.cash-pig {
    background-image: url('./images/wealth-of-legends.webp');
}

.mighty-wild-panther {
    background-image: url('./images/coin-volcano.webp');
}

@media (max-width: 768px) {
    .slots-grid {
        justify-content: center;
        gap: 1rem;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .slot-card {
        width: 160px;
        height: 200px;
    }
    
    .slot-title {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .slot-buttons {
        max-width: 120px;
    }
    
    .slot-button {
        padding: 0.4rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .slots-grid {
        gap: 0.8rem;
    }
    
    .slot-card {
        width: 140px;
        height: 180px;
    }
    
    .slot-overlay {
        padding: 0.8rem;
    }
    
    .slot-title {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .slot-buttons {
        max-width: 110px;
        gap: 0.4rem;
    }
    
    .slot-button {
        padding: 0.3rem;
        font-size: 0.8rem;
    }
}

/* Special handling for devices with touch support */
@media (hover: none) {
    .slot-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .slot-card:hover {
        transform: none;
    }
}

/* Hero Section */
.hero {
    background-image: url('images/allyherobg.webp');
    background-size: cover;
    background-position: 60% center;
    background-repeat: no-repeat;
    min-height: 480px;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.hero-title .bonus-text {
    font-size: 0.9em;
    display: block;
    margin-top: 0.2em;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
    max-width: 600px;
}

.hero .register-button {
    background-color: #FFD700;
    color: #000000;
    font-weight: 800;
    padding: 0.75rem 1rem;
    font-size: 1.2rem;
    border-radius: 8px;
    text-transform: uppercase;
    border: 3px solid #000000;
    box-shadow: 0 2px 0 #000000;
    letter-spacing: 0px;
    transition: all 0.2s ease;
    position: relative;
    min-width: 200px;
    text-align: center;
    display: inline-block;
}

.hero .register-button:hover {
    background-color: #FFDF00;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
}

.popular-slots {
    background-color: var(--site-bg-color);
    padding: 20px 0;
}

.section-title::after {
    content: none;
}

/* Navigation */
.page-nav {
    background-color: var(--header-bg-color);
    padding: 0.1rem 0;
    border-bottom: 1px solid var(--header-border);
    position: sticky;
    top: 56px;
    z-index: 999;
    transition: all 0.2s ease-out;
    width: 100%;
    overflow-x: auto;
}

.page-nav.sticky {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(33, 45, 57, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.1rem 0;
}

.page-nav .container {
    position: relative;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--header-bg-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    opacity: 0.9;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-arrow:hover {
    opacity: 1;
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.nav-arrow:active {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-arrow i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.nav-arrow:hover i {
    transform: scale(1.2);
}

.nav-arrow-left {
    left: 0;
}

.nav-arrow-right {
    right: 0;
}

.page-nav-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.25rem 40px;
    gap: 0.4rem;
    white-space: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.page-nav-links::-webkit-scrollbar {
    display: none;
}

.page-nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.2rem 0.4rem;
    position: relative;
    white-space: nowrap;
    opacity: 0.8;
    transition: all 0.2s ease;
    border-radius: 3px;
}

.page-nav-link:hover,
.page-nav-link.active {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
}

.page-nav-link::after {
    content: none;
}

.page-nav-link:hover::after,
.page-nav-link.active::after {
    transform: scaleX(1);
}

@media (max-width: 480px) {
    .page-nav {
        padding: 0.15rem 0;
    }
    
    .page-nav-links {
        padding: 0.15rem 0.35rem;
        justify-content: flex-start;
        gap: 0.2rem;
    }
    
    .page-nav-link {
        font-size: 0.85rem;
        padding: 0.1rem 0.25rem;
    }
}

/* Popular Slots */
.popular-slots {
    background-color: var(--site-bg-color);
    padding: 20px 0;
}

.section-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 16px;
    padding-left: 0;
}

.section-title::after {
    content: none;
}


.dfj4-casino-info {
    background-color: var(--site-bg-color);
    padding: 20px 0;
}

.dfj4-casino-info h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.dfj4-casino-info h3 {
    color: #ffffff;
    font-weight: 700;
    margin: 0 0 1rem;
}

.info-content {
    color: #ffffff;
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.6;
}

.info-content p {
    margin-bottom: 1rem;
}

.info-content .text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-content .text-link:hover {
    text-decoration: underline;
}

.info-content ul,
.info-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.info-content ul li,
.info-content ol li {
    margin-bottom: 0.5rem;
}

.info-block {
    background-color: var(--site-bg-color);
    padding: 4rem 0;
    color: #ffffff;
}

.info-block h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.table-wrapper {
    margin-bottom: 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    table-layout: fixed;
}

.stats-table th,
.stats-table td {
    padding: 0.6rem 0.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.stats-table th {
    background-color: var(--header-bg-color);
    color: var(--text-color);
    font-weight: 600;
    text-align: left;
    font-size: 0.95rem;
}

.stats-table td {
    color: #ffffff;
    font-size: 0.95rem;
}

.stats-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

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


.split-content {
    background-color: var(--site-bg-color);
    padding: 3rem 0;
    position: relative;
    display: flex;
    align-items: center;
}

.split-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-text {
    flex: 1;
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 0 0 400px;
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-text h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
}

.split-description {
    color: #ffffff;
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
}

.split-description p {
    margin-bottom: 1rem;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .split-wrapper {
        gap: 2rem;
    }

    .split-image {
        flex: 0 0 400px;
    }
}

@media (max-width: 768px) {
    .split-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .split-text {
        order: 2;
        width: 100%;
    }

    .split-image {
        order: 1;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        flex: none;
    }
}

.site-footer {
    background-color: var(--header-bg-color);
    padding: 12px 0;
    border-top: 1px solid var(--header-border);
    width: 100%;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.copyright-text {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Remove unused footer styles */
/* Keeping only the essential footer styles */

@media (max-width: 768px) {
    .site-footer {
        padding: 12px 0;
    }

    .site-footer .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 12px 0;
    }

    .copyright-text {
        font-size: 0.8rem;
    }
}

.faq-section {
    background-color: var(--site-bg-color);
    padding: 4rem 0;
    text-align: center;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    width: 100%;
    display: block;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: transparent;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(to bottom, #f5f5f5 0%, #e6e6e6 100%);
    border: 2px solid #b3b3b3;
    color: #000000;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    border-radius: 6px;
    box-shadow: 0 3px 0 #808080;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease-out;
}

.faq-question:hover {
    background: linear-gradient(to bottom, #ffffff 0%, #f0f0f0 100%);
    box-shadow: 0 4px 0 #808080;
}

.faq-question.active {
    background: linear-gradient(to bottom, #ffffff 0%, #f0f0f0 100%);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
    box-shadow: 0 2px 0 #808080;
}

.faq-answer {
    padding: 1.25rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #999999;
    border-top: none;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    text-align: left;
    margin-bottom: 0;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 0;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .faq-answer {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

/* Recent Earnings Section */
.recent-earnings-section {
    background-color: var(--site-bg-color);
    padding: 4rem 0;
    overflow: hidden;
    width: 100%;
}

.recent-earnings-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.recent-earnings-section .section-title {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
}

.earnings-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.earnings-carousel-wrapper {
    display: flex;
    animation: carousel 15s linear infinite;
    will-change: transform;
}

@keyframes carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Game background variants */
.game-default {
    background-image: url('./images/flame-fortune.webp');
    background-size: cover;
    background-position: center;
}

.game-golden-dollars {
    background-image: url('./images/flame-fruits-frenzy.webp');
    background-size: cover;
    background-position: center;
}

.game-olympus {
    background-image: url('./images/stormforged.webp');
    background-size: cover;
    background-position: center;
}

.game-wild-tiger {
    background-image: url('./images/joker-cashpot.webp');
    background-size: cover;
    background-position: center;
}

.game-baccarat {
    background-image: url('./images/wealth-of-legends.webp');
    background-size: cover;
    background-position: center;
}

.game-lucky-clover {
    background-image: url('./images/coin-volcano.webp');
    background-size: cover;
    background-position: center;
}

.game-book-ra {
    background-image: url('./images/book-of-ra.webp');
    background-size: cover;
    background-position: center;
}

.game-cash-egypt {
    background-image: url('./images/cash-of-egypt.webp');
    background-size: cover;
    background-position: center;
}

.game-alkemor {
    background-image: url('./images/coins-of-alkemor.webp');
    background-size: cover;
    background-position: center;
}

.game-pyramids {
    background-image: url('./images/3-pyramids-of-gold.webp');
    background-size: cover;
    background-position: center;
}

.earnings-item {
    flex: 0 0 auto;
    width: 170px;
    margin-right: 10px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    height: 238px;
}

.earnings-game-bg {
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.game-default .earnings-game-bg {
    background-image: url('./images/flame-fortune.webp');
}

.game-golden-dollars .earnings-game-bg {
    background-image: url('./images/flame-fruits-frenzy.webp');
}

.game-olympus .earnings-game-bg {
    background-image: url('./images/stormforged.webp');
}

.game-wild-tiger .earnings-game-bg {
    background-image: url('./images/joker-cashpot.webp');
}

.game-baccarat .earnings-game-bg {
    background-image: url('./images/wealth-of-legends.webp');
}

.game-lucky-clover .earnings-game-bg {
    background-image: url('./images/coin-volcano.webp');
}

.game-book-ra .earnings-game-bg {
    background-image: url('./images/book-of-ra.webp');
}

.game-cash-egypt .earnings-game-bg {
    background-image: url('./images/cash-of-egypt.webp');
}

.game-alkemor .earnings-game-bg {
    background-image: url('./images/coins-of-alkemor.webp');
}

.game-pyramids .earnings-game-bg {
    background-image: url('./images/3-pyramids-of-gold.webp');
}

.earnings-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.earnings-amount {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .recent-earnings-section {
        padding: 3rem 0;
    }
    
    .recent-earnings-section .section-title {
        font-size: 1.75rem;
    }
    
    .earnings-carousel-wrapper {
        animation-duration: 10s;
    }
    
    .earnings-item {
        width: 160px;
        height: 224px;
    }
    
    .earnings-amount {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .recent-earnings-section {
        padding: 2rem 0;
    }
    
    .recent-earnings-section .section-title {
        font-size: 1.5rem;
    }
    
    .earnings-item {
        width: 150px;
        height: 210px;
    }
    
    .earnings-amount {
        font-size: 1rem;
    }
}

/* Mobile Applications Section */
.mobile-app-section {
    background-color: var(--site-bg-color);
    padding: 3rem 0;
    position: relative;
}

.mobile-app-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 45, 57, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.mobile-app-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mobile-app-content {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.mobile-app-section .section-title {
    text-align: left;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mobile-app-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

.mobile-app-text p {
    margin-bottom: 1rem;
}

.features-list h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.features-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    font-size: 16px;
}

.features-list .feature-check {
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .features-list ul li {
        padding-left: 25px;
    }
}

.app-buttons {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.app-download-button,
.app-browser-button {
    flex: 1;
    background: linear-gradient(135deg, #6a1a2c 0%, #430313 100%);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.app-browser-button {
    background: linear-gradient(135deg, #430313 0%, #2a0109 100%);
}

.app-download-button:hover,
.app-browser-button:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.button-icon {
    display: inline-flex;
    margin-left: 0.6rem;
    font-weight: bold;
    color: var(--primary-color);
}

.mobile-app-image {
    flex: 0 0 auto;
    width: 35%;
    display: flex;
    justify-content: center;
}

.device-mockup {
    position: relative;
}

.mockup-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
    .mobile-app-wrapper {
        flex-direction: column;
    }
    
    .mobile-app-content, .mobile-app-image {
        width: 100%;
    }

    .app-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .app-download-button,
    .app-browser-button {
        width: 100%;
        min-width: unset;
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Pros and cons emoji styling */
.slot-table td[data-label^="✅"]:before {
    color: #4caf50;
    font-weight: 700;
}

.slot-table td[data-label^="⚠️"]:before {
    color: #ff9800;
    font-weight: 700;
}

/* Completely redesigned pros/cons table for mobile */
@media (max-width: 480px) {
    /* Container styling */
    .slot-table-container:has(th:nth-child(2):last-child) {
        overflow: visible;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        padding: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }
    
    /* Table header styling */
    .slot-table-container:has(th:nth-child(2):last-child) .slot-table thead {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .slot-table-container:has(th:nth-child(2):last-child) .slot-table th {
        flex: 1;
        padding: 12px 10px;
        text-align: center;
    background: linear-gradient(135deg, #6a1a2c 0%, #430313 100%);
    border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 700;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .slot-table-container:has(th:nth-child(2):last-child) .slot-table th:first-child {
        color: #4caf50;
}

    .slot-table-container:has(th:nth-child(2):last-child) .slot-table th:last-child {
        color: #ff9800;
    }
    
    /* Table body styling */
    .slot-table-container:has(th:nth-child(2):last-child) .slot-table,
    .slot-table-container:has(th:nth-child(2):last-child) .slot-table tbody {
        background: transparent;
        box-shadow: none;
        border: none;
}

    /* Make all table rows display as a grid */
    .slot-table-container:has(th:nth-child(2):last-child) .slot-table tbody {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    /* Style all cells */
    .slot-table-container:has(th:nth-child(2):last-child) .slot-table tr {
        box-shadow: none;
        margin: 0;
        background: transparent;
        border: none;
        display: contents;
}

    /* Pros cells styling */
    .slot-table-container:has(th:nth-child(2):last-child) .slot-table td[data-label^="✅"] {
        grid-column: 1;
        background: rgba(76, 175, 80, 0.1);
        border-radius: 8px;
        padding: 12px;
        margin: 0;
        border: 1px solid rgba(76, 175, 80, 0.3);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        display: block;
    position: relative;
        text-align: center;
        min-height: 60px;
        font-size: 0.9rem;
        line-height: 1.4;
}

    /* Cons cells styling */
    .slot-table-container:has(th:nth-child(2):last-child) .slot-table td[data-label^="⚠️"] {
        grid-column: 2;
        background: rgba(255, 152, 0, 0.1);
        border-radius: 8px;
        padding: 12px;
    margin: 0;
        border: 1px solid rgba(255, 152, 0, 0.3);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        display: block;
        position: relative;
        text-align: center;
        min-height: 60px;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Add icons before content */
    .slot-table-container:has(th:nth-child(2):last-child) .slot-table td[data-label^="✅"]::before {
        content: "✅";
        display: block;
        font-size: 1.4rem;
        margin-bottom: 8px;
        color: #4caf50;
    }
    
    .slot-table-container:has(th:nth-child(2):last-child) .slot-table td[data-label^="⚠️"]::before {
        content: "⚠️";
        display: block;
        font-size: 1.4rem;
        margin-bottom: 8px;
        color: #ff9800;
    }
    
    /* Hide empty cells */
    .slot-table-container:has(th:nth-child(2):last-child) .slot-table td:empty {
        display: none;
    }
}

/* Ratings table styling */
.ratings-table {
    width: 100%;
    max-width: 400px;
    margin: 1.5rem 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ratings-table table {
    width: 100%;
    border-collapse: collapse;
}

.ratings-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

.ratings-table tbody tr:last-child {
    border-bottom: none;
}

.ratings-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
    }
    
.ratings-table td {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
        }

.ratings-table td:first-child {
    font-weight: 500;
    }
    
.ratings-table td:last-child {
    font-weight: 600;
    text-align: right;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .ratings-table {
        max-width: 100%;
    }
}

/* Preserve existing navigation styles */
.page-nav-links,
.footer-links,
.features-list ul {
    padding-left: 0;
    }
    
@media (max-width: 768px) {
    .nav-arrow {
        display: none;
    }
    
    .page-nav-links {
        padding: 0.25rem 0.5rem;
    }
}

/* Randomized section names added from inline styles */
.qwt75n { /* Mirrors .popular-slots */
    padding: 20px 0;
    background: var(--secondary-bg);
}

.zrl93k { /* Mirrors .dfj4-casino-info */
    padding: 20px 0;
    background-color: var(--primary-bg);
    }
.zrl93k h2 {
    margin-bottom: 25px;
    font-size: 28px;
    text-align: left;
}
.zrl93k h3 {
    margin: 20px 0 15px;
    font-size: 22px;
    }

.mjh24f { /* Mirrors .split-content */
    padding: 20px 0;
    background-color: var(--secondary-bg);
}

.vtf59p { /* Mirrors .recent-earnings-section */
    padding: 20px 0;
    background: var(--gradient-bg);
    position: relative;
}
.vtf59p .recent-earnings-header {
    text-align: center;
    margin-bottom: 20px;
    }
    
.bnw17c { /* Mirrors .mobile-app-section */
    padding: 20px 0;
    background: var(--gradient-bg);
    position: relative;
}

.cyq86d { /* Mirrors .faq-section */
    padding: 20px 0;
    background: var(--primary-bg);
}

.ally-banner-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    margin-bottom: 2rem;
    background-color: var(--site-bg-color);
}

.ally-banner-bg {
    background-image: url('./images/allybannerlong.webp');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    padding: 2rem 0;
    border-top: 3px solid #000000;
    border-bottom: 3px solid #000000;
    position: relative;
}

.ally-banner-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.ally-banner-section h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    text-align: left;
    position: relative;
    z-index: 2;
}

.ally-banner-text {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: left;
    position: relative;
    z-index: 2;
}

.ally-banner-section .btn {
    margin: 0.5rem 0;
    position: relative;
    z-index: 2;
}

.ally-banner-terms {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    text-align: left;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .ally-banner-bg {
        padding: 1.5rem 0;
    }
    
    .ally-banner-section h2 {
        font-size: 1.5rem;
    }
    
    .ally-banner-text {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .ally-banner-bg {
        padding: 1rem 0;
    }
    
    .ally-banner-section h2 {
        font-size: 1.2rem;
    }
    
    .ally-banner-text {
        font-size: 1.5rem;
    }
}

section {
    overflow: visible;
}

.slot-table-container {
    width: 100%;
    margin: 1.5rem 0;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.slot-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    color: var(--text-color);
    font-family: var(--font-primary);
    font-style: normal;
}

.slot-table thead {
    background-color: var(--header-bg-color);
}

.slot-table th,
.slot-table td {
    padding: 0.6rem 0.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.slot-table th {
    background-color: var(--header-bg-color);
    color: var(--text-color);
    font-weight: 600;
    text-align: left;
    font-size: 0.95rem;
}

.slot-table td {
    color: #ffffff;
    font-size: 0.95rem;
}

.slot-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

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

.slot-table td:first-child {
    font-weight: 600;
}

.slot-table td:first-child > span {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-right: 0.5rem;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 980px) {
    .slot-table-container {
        margin: 1.25rem 0;
    }
    
    .slot-table, 
    .slot-table tbody, 
    .slot-table tr {
        display: block;
        width: 100%;
    }
    
    .slot-table thead {
        display: none;
    }
    
    .slot-table tr {
        margin-bottom: 1rem;
        background: rgba(0, 0, 0, 0.2);
        border-radius: var(--border-radius-sm);
        border: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .slot-table tr:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
    
    .slot-table td {
        display: flex;
        padding: 0.5rem 0.6rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.9rem;
        align-items: center;
        text-align: right;
    }
    
    .slot-table td:before {
        content: attr(data-label);
        font-weight: 600;
        margin-right: auto;
        color: var(--primary-color);
        text-align: left;
    }
    
    .slot-table td:first-child {
        background-color: var(--header-bg-color);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
        padding: 0.75rem 0.6rem;
        justify-content: flex-start;
        text-align: left;
    }
    
    .slot-table td:first-child:before {
        display: none;
    }
    
    .slot-table td:last-child {
        border-bottom: none;
    }
    
    .slot-table td:first-child > span {
        font-size: 1.2em;
        color: var(--primary-color);
        margin-right: 0.5rem;
        display: inline-block;
        vertical-align: middle;
    }
}

@media (max-width: 480px) {
    .slot-table-container {
        margin: 0.75rem 0;
    }
    
    .slot-table td {
        padding: 0.45rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .slot-table td:first-child {
        font-size: 0.9rem;
        padding: 0.6rem 0.5rem;
    }
    
    .slot-table td:first-child > span {
        font-size: 1.1em;
    }
    
    .stats-table th,
    .stats-table td {
        padding: 0.45rem 0.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .table-wrapper {
        margin-bottom: 1.25rem;
    }
    
    .stats-table {
        min-width: 100%;
    }
    
    .stats-table th,
    .stats-table td {
        padding: 0.5rem 0.6rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .table-wrapper {
        margin-bottom: 1rem;
    }
}

/* Quick Info Section Styles */
.quick-info-section {
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
}

.quick-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.8rem;
}

.quick-info-list li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    line-height: 1.3;
    color: var(--text-color);
}

.feature-icon {
    display: inline-block;
    margin-right: 0.8rem;
    font-size: 1.2rem;
    min-width: 1.2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .quick-info-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .quick-info-list li {
        font-size: 0.9rem;
    }
}

/* Registration Guide Styles */
.registration-guide {
    padding: 1rem 0;
    margin: 1.5rem 0;
}

.registration-steps {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.registration-steps li {
    display: flex;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--text-color);
    font-size: 0.95rem;
    align-items: flex-start;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: var(--primary-color);
    color: #000;
    border-radius: 50%;
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.registration-cta {
    text-align: center;
    margin-top: 2rem;
}

.registration-cta .register-button {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .registration-steps li {
        font-size: 0.9rem;
    }
}

/* Bonus Showcase Styles */
.bonus-showcase {
    background: linear-gradient(135deg, rgba(67, 3, 19, 0.9), rgba(33, 45, 57, 0.9));
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: stretch;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-header {
    background: var(--primary-color);
    padding: 8px 12px;
    position: relative;
    text-align: center;
}

.bonus-label {
    position: absolute;
    top: 5px;
    right: 10px;
    background: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.bonus-title {
    margin: 0;
    color: var(--header-bg-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.bonus-content {
    padding: 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bonus-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.bonus-up-to {
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.8;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.bonus-value {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.bonus-features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    text-align: left;
    flex-grow: 1;
}

.bonus-features li {
    margin-bottom: 6px;
    padding-left: 22px;
    position: relative;
    font-size: 0.85rem;
    line-height: 1.2;
}

.feature-check {
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.bonus-button {
    display: inline-block;
    width: 100%;
    margin-top: 5px;
    font-size: 0.95rem;
    padding: 8px;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.bonus-steps {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-steps h3 {
    text-align: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-color);
}

.bonus-steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    justify-content: space-between;
}

.bonus-step {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 12px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bonus-step:hover {
    transform: translateX(3px);
    background: rgba(255, 255, 255, 0.08);
}

.step-icon {
    background: var(--primary-color);
    color: var(--header-bg-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-content {
    text-align: left;
}

.step-content h4 {
    margin: 0 0 2px;
    font-size: 0.9rem;
}

.step-content p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .bonus-showcase {
        flex-direction: row;
        padding: 15px;
        gap: 12px;
        align-items: stretch;
    }
    
    .bonus-card, .bonus-steps {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
    }
    
    .bonus-steps-wrapper {
        flex-grow: 1;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .bonus-showcase {
        flex-direction: column;
        padding: 12px;
    }
    
    .bonus-card {
        width: 100%;
        max-width: 100%;
        margin-bottom: 12px;
    }
    
    .bonus-steps {
        width: 100%;
        padding: 10px;
    }
    
    .bonus-button {
        width: 100%;
        padding: 8px;
    }
    
    .bonus-value {
        font-size: 2.2rem;
    }
    
    .bonus-features li {
        margin-bottom: 5px;
        padding-left: 20px;
        font-size: 0.8rem;
    }
    
    /* Updated steps layout */
    .bonus-steps-wrapper {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 5px;
    }
    
    .bonus-step {
        flex: 0 0 calc(50% - 5px);
        flex-direction: column;
        text-align: center;
        min-height: 90px;
        padding: 8px;
        align-items: center;
        justify-content: center;
    }
    
    .step-icon {
        margin-bottom: 5px;
    }
    
    .step-content {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .bonus-showcase {
        padding: 10px;
    }
    
    .bonus-card {
        margin-bottom: 10px;
    }
    
    .bonus-content {
        padding: 12px;
    }
    
    .bonus-header {
        padding: 8px;
    }
    
    /* Updated small screen layout */
    .bonus-steps-wrapper {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .bonus-step {
        flex: 0 0 100%;
        flex-direction: row;
        text-align: left;
        min-height: auto;
        padding: 6px 8px;
        width: 100%;
    }
    
    .step-icon {
        margin-bottom: 0;
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
    
    .step-content {
        text-align: left;
    }
    
    .step-content h4 {
        font-size: 0.85rem;
        margin-bottom: 0;
    }
    
    .step-content p {
        font-size: 0.75rem;
    }
}

/* Add CSS for VIP Program Section */
.vip-benefits {
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 28px;
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.benefit-content h4 {
    color: #ffc107;
    margin: 0 0 10px 0;
    font-size: 18px;
}

.benefit-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #e0e0e0;
}

/* Tournament List Styles */
.tournament-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tournament-list li {
    padding: 12px 15px;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border-left: 3px solid #ffc107;
}

.tournament-list li strong {
    color: #ffc107;
    display: block;
    margin-bottom: 3px;
}

/* Media Queries for Responsive Layout */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 15px;
    }
}

/* Tournament Section Styles */
.tournament-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.tournament-info, .tournament-highlights {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tournament-prize-info {
    display: flex;
    align-items: center;
    background-color: rgba(67, 3, 19, 0.8);
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
}

.tournament-prize-icon {
    font-size: 36px;
    margin-right: 20px;
}

.tournament-prize-content h4 {
    margin: 0 0 5px 0;
    color: var(--text-color);
}

.tournament-prize-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 5px 0;
}

.tournament-prize-desc {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .tournament-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .tournament-prize-info {
        padding: 15px;
    }
    
    .tournament-prize-icon {
        font-size: 28px;
    }
    
    .tournament-prize-amount {
        font-size: 20px;
    }
}

.site-preview {
    margin: 25px auto;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.site-preview-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .site-preview {
        width: 95%;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .site-preview {
        margin: 20px auto;
        width: 95%;
        max-width: 600px;
    }
}

@media (max-width: 576px) {
    .site-preview {
        margin: 15px auto;
        width: 100%;
    }
}

.site-preview-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 25px 0;
}

.site-preview {
    margin: 0 auto;
    width: 80%;
    max-width: 700px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.site-preview-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .site-preview {
        width: 85%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .site-preview-container {
        margin: 20px 0;
    }
    
    .site-preview {
        width: 90%;
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .site-preview-container {
        margin: 15px 0;
    }
    
    .site-preview {
        width: 95%;
        max-width: 450px;
    }
}

.section-subtitle {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 15px;
    color: var(--text-color);
}

.mjh24f .section-subtitle {
    color: var(--text-color);
    font-size: 22px;
    margin: 20px 0 15px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 20px;
        margin: 18px 0 12px;
    }
}

@media (max-width: 576px) {
    .section-subtitle {
        font-size: 18px;
        margin: 15px 0 10px;
    }
}

/* Tournament section heading styles */
.mjh24f h3 {
    margin: 20px 0 15px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .mjh24f h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .mjh24f h3 {
        font-size: 18px;
    }
}

/* Withdrawal section heading styles */
#wyplaty-casino h3 {
    margin: 20px 0 15px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
}

@media (max-width: 768px) {
    #wyplaty-casino h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    #wyplaty-casino h3 {
        font-size: 18px;
    }
}

/* Registration summary table mobile styles */
@media (max-width: 768px) {
    .registration-summary-table {
        margin: 1.25rem 0;
    }
    
    .registration-summary-table thead {
        display: none;
    }
    
    .registration-summary-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        background: linear-gradient(145deg, rgba(33, 45, 57, 0.8), rgba(67, 3, 19, 0.5));
        border-radius: 10px;
        border: 1px solid rgba(255, 215, 0, 0.2);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        overflow: hidden;
    }
    
    .registration-summary-table tr:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }
    
    .registration-summary-table td {
        display: block;
        padding: 0;
        border: none;
    }
    
    .registration-summary-table td:first-child {
        background: linear-gradient(to right, var(--header-bg-color), rgba(67, 3, 19, 0.9));
        color: var(--primary-color);
        font-size: 1rem;
        font-weight: 700;
        padding: 0.75rem 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .registration-summary-table td:last-child {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .registration-summary-table td:first-child {
        font-size: 0.95rem;
        padding: 0.7rem 0.8rem;
    }
    
    .registration-summary-table td:last-child {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

