
/* Millioner - Shared Styles for All Languages */

:root {
    /* Desert/Arabic Theme Colors */
    --primary-color: #1A0F0A;
    --secondary-color: #2B1810;
    --header-bg: #1F1108;
    --sidebar-bg: #1A0E07;
    --text-primary: #F5E6D3;
    --text-secondary: #D4B896;
    --gold: #C9A961;
    --gold-light: #D4AF37;
    --desert-sand: #E4C59E;
    --desert-orange: #D2691E;
    --desert-brown: #8B4513;
    --desert-red: #CD5C5C;
    --desert-copper: #B87333;
    --gradient-start: #2B1810;
    --gradient-end: #1A0F0A;
    --card-border: #8B4513;
    --active-gradient: linear-gradient(135deg, #D2691E 0%, #8B4513 100%);
}

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

body {
    font-family: 'Cairo', 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #21120c;
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Desert pattern overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

/* Animated Background - Disabled for pure black background */

/* Header */
header {
    background: linear-gradient(135deg, #1a0f0a 0%, #2b1810 50%, #1a0f0a 100%);
    padding: 1rem 2rem;
    border-bottom: 2px solid rgba(210, 105, 30, 0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    backdrop-filter: blur(10px);
}

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

.brand-name {
    flex: 1;
}

.brand-text {
    font-size: 1.7rem;
    font-weight: 900;
    color: #d4af37;
    margin: 0;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
}

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


.btn-play-now {
    padding: 1rem 2rem;
    background: rgb(57 32 15 / 90%);
    border: 2px solid rgba(210, 105, 30, 0.9);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s 
ease;
}

.btn-play-now:hover {
    background: linear-gradient(180deg, #E07B2E 0%, #A0522D 100%);
    transform: scale(1.03);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    background: #21120c;
    padding: 3rem 0;
    display: flex;
    justify-content: center;
}

.hero-container {
    max-width: 1400px;
    width: calc(100% - 4rem);
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 400px;
    background: url('img/143188.jpg') no-repeat center top / cover;
    background-position: center 20%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.hero-content {
    flex: 0 0 40%;
    position: relative;
    z-index: 2;
}

.hero-characters {
    flex: 1;
    position: relative;
    height: 400px;
    filter: brightness(0.8) blur(1px);
}

.characters-bg {
    display: none;
}

.bonus-box {
    background: linear-gradient(to top, rgba(43, 24, 16, 0.98) 0%, rgba(26, 15, 10, 0.85) 100%);
    background-size: cover;
    background-position: center;
    border: none;
    border-left: 3px solid rgba(210, 105, 30, 0.8);
    border-right: 3px solid rgba(210, 105, 30, 0.8);
    border-bottom: 3px solid rgba(210, 105, 30, 0.8);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(228, 197, 158, 0.1);
    max-width: 420px;
    position: relative;
    text-align: center;
}

.bonus-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(43, 24, 16, 0.98) 0%, rgba(26, 15, 10, 0.85) 100%);
    border-radius: 20px;
    z-index: 1;
}

.bonus-box > * {
    position: relative;
    z-index: 2;
}

.bonus-label {
    border: 2px solid rgba(210, 105, 30, 0.9);
    border-radius: 12px;
    padding: 6px 16px;
    font-size: 0.8rem;
    color: #E4C59E;
    background: linear-gradient(135deg, rgba(210, 105, 30, 0.2) 0%, rgba(139, 69, 19, 0.15) 100%);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

.bonus-amount {
    font-size: 2.3rem;
    color: #D4AF37;
    margin-bottom: 1.8rem;
    font-weight: 900;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.btn-join-now {
    padding: 1rem 2rem;
    background: rgb(57 32 15 / 90%);
    border: 2px solid rgba(210, 105, 30, 0.9);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s 
ease;
}

.btn-join-now:hover {
    background: linear-gradient(180deg, #E07B2E 0%, #A0522D 100%);
    transform: scale(1.05);
    box-shadow: inset 0 2px 4px rgba(228, 197, 158, 0.3), 0 8px 30px rgba(210, 105, 30, 0.6);
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--text-primary);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Horizontal Bonus Blocks */
.bonus-block-horizontal {
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.bonus-block-horizontal:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.04) 100%);
    border-color: rgba(212, 175, 55, 0.5);
}

.bonus-content-horizontal {
    flex: 1;
}

.bonus-badge {
    background: linear-gradient(135deg, #D2691E 0%, #8B4513 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.bonus-title-horizontal {
    color: #E2C174;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.bonus-description-horizontal {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.bonus-features-horizontal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.bonus-features-horizontal li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.bonus-features-horizontal li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
    font-size: 1rem;
}

.bonus-claim-btn-horizontal {
    display: inline-block;
    background: linear-gradient(180deg, #D2691E 0%, #8B4513 100%);
    border: 2px solid rgba(201, 169, 97, 0.9);
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    box-shadow: inset 0 2px 4px rgba(228, 197, 158, 0.3), 0 5px 20px rgba(210, 105, 30, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.bonus-claim-btn-horizontal:hover {
    background: linear-gradient(180deg, #E07B2E 0%, #A0522D 100%);
    transform: scale(1.05);
    box-shadow: inset 0 2px 4px rgba(228, 197, 158, 0.3), 0 8px 30px rgba(210, 105, 30, 0.6);
}

/* Slots Section */
.slots-section {
    background: #21120c;
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.slots-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.slots-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.nav-btn {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-btn:hover {
    background: var(--active-gradient);
    border-color: var(--desert-orange);
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

.nav-btn.active {
    background: var(--active-gradient);
    border-color: var(--desert-orange);
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4);
}

.slots-carousel {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}

.slots-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.slots-title {
    color: #E2C174;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.slots-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slots-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.nav-arrows {
    display: flex;
    gap: 0.5rem;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--card-border);
    background: var(--gradient-start);
    color: var(--text-primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.arrow-btn:hover {
    background: linear-gradient(135deg, var(--desert-orange) 0%, var(--desert-brown) 100%);
    border-color: var(--desert-orange);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    opacity: 1;
}

.slot-card {
    position: relative;
    background: #21120c;
    border: 1px solid #8B4513;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
    text-decoration: none;
    display: block;
}

.slot-card:hover {
    transform: translateY(-5px);
    border-color: #D2691E;
}

.slot-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

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

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

.slot-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--desert-orange) 0%, var(--desert-brown) 100%);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 2px solid var(--gold);
    box-shadow: 0 2px 10px rgba(210, 105, 30, 0.6);
}

.slot-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-primary);
    padding: 1rem 0.5rem 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(210, 105, 30, 0.4);
    border: 2px solid rgba(228, 197, 158, 0.9);
    border-radius: 50px;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    pointer-events: none;
}

.slot-card:hover .play-btn {
    opacity: 1;
    pointer-events: auto;
}

.play-btn:hover {
    background: rgba(210, 105, 30, 0.7);
    border-color: rgba(228, 197, 158, 1);
    transform: translate(-50%, -50%) scale(1.05);
}

/* Main Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: transparent;
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-block {
    width: 100%;
    margin-bottom: 0;
    padding: 2rem;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.main-title {
    color: #D4AF37;
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    display: block;
}

.section-title-primary {
    color: #D4AF37;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    border-left: 4px solid #D4AF37;
    padding-left: 1rem;
}

.section-title-secondary {
    color: #4CC1F9;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-bottom: 2px solid rgba(76, 193, 249, 0.3);
    padding-bottom: 0.5rem;
}

.section-title-tertiary {
    color: #2E8B57;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: relative;
    padding-left: 2rem;
}

.section-title-tertiary::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #2E8B57;
    font-size: 1.5rem;
}

.subsection-title {
    color: #94cce7;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding-left: 1rem;
    border-left: 3px solid rgba(148, 204, 231, 0.6);
}

.faq-section {
    max-width: 1400px;
    width: 100%;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(20, 30, 50, 0.5);
    border: 1px solid rgba(76, 193, 249, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(76, 193, 249, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #4CC1F9;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.content-wrapper h1 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.content-wrapper h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(217, 177, 92, 0.3);
}

.content-wrapper p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    width: 100%;
    text-align: justify;
    display: block;
}

/* Arabic Lists Styling */
.content-wrapper ol,
.content-wrapper ul {
    margin: 1.5rem 0;
    padding-right: 2rem;
    color: var(--text-secondary);
    width: 100%;
    display: block;
}

.content-wrapper ol li,
.content-wrapper ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    font-size: 1.05rem;
    width: 100%;
    display: block;
    text-align: justify;
}

.content-wrapper ol {
    counter-reset: arabic-counter;
    list-style: none;
}

.content-wrapper ol li {
    counter-increment: arabic-counter;
    position: relative;
}

.content-wrapper ol li::before {
    content: counter(arabic-counter) ".";
    position: absolute;
    right: -2rem;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
    background: linear-gradient(135deg, rgba(210, 105, 30, 0.2) 0%, rgba(139, 69, 19, 0.1) 100%);
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(210, 105, 30, 0.3);
}

.content-wrapper ul {
    list-style: none;
}

.content-wrapper ul li::before {
    content: "◆";
    position: absolute;
    right: -1.5rem;
    color: var(--gold);
    font-weight: bold;
    font-size: 1rem;
    background: linear-gradient(135deg, rgba(210, 105, 30, 0.2) 0%, rgba(139, 69, 19, 0.1) 100%);
    border-radius: 50%;
    width: 1.2rem;
    height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(210, 105, 30, 0.3);
}

/* Info Table */
.info-table-wrapper {
    margin: 2rem 0;
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(212, 175, 55, 0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    overflow: hidden;
}

.info-table tr {
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

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

.info-table td {
    padding: 1.2rem 1.5rem;
}

.table-label {
    color: #E2C174;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    width: 30%;
    border-right: 1px solid rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.05);
}

.table-value {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-table tr:hover {
    background: rgba(212, 175, 55, 0.08);
}

.info-table tr:hover .table-label {
    color: #F4E4C1;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-section {
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Game Section */
.game-container {
    background: rgba(22, 33, 62, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    margin-top: 2rem;
    max-width: 800px;
    width: 100%;
}

.question-box {
    background: rgba(15, 52, 96, 0.6);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid var(--accent-color);
}

.question-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-light);
}

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

.answer-btn {
    padding: 1.5rem;
    background: rgba(15, 52, 96, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.5);
    color: var(--text-light);
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.answer-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--accent-color);
    transform: translateX(10px);
}

.answer-btn.correct {
    background: var(--success-color);
    border-color: var(--success-color);
    color: var(--primary-color);
}

.answer-btn.wrong {
    background: var(--danger-color);
    border-color: var(--danger-color);
    color: var(--text-light);
}

/* Buttons */
.btn-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffed4e 100%);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Prize Display */
.prize-tracker {
    background: rgba(15, 52, 96, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 2px solid var(--accent-color);
    text-align: center;
}

.current-prize {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: bold;
}

/* Footer */
footer {
    background: #21120c;
    border-top: 2px solid rgba(210, 105, 30, 0.4);
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}


.age-badge-small {
    background: linear-gradient(135deg, #D2691E 0%, #8B4513 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    margin: 0.5rem 0;
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom p {
    color: rgba(228, 197, 158, 0.8);
    font-size: 0.9rem;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
}

.copyright-text {
    color: rgba(228, 197, 158, 0.6);
    font-size: 0.75rem;
    margin-top: 0.3rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        width: calc(100% - 2rem);
        padding: 2rem 1rem;
    }

    .slots-container,
    .footer-content,
    .content-wrapper {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0 1rem;
    }

    .brand-text {
        font-size: 1.4rem;
        text-align: left;
        letter-spacing: 2px;
    }

    .header-right {
        flex-shrink: 0;
    }

    .btn-play-now {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }


    .hero-banner {
        padding: 2rem 0;
    }

    .hero-container {
        width: calc(100% - 1rem);
        padding: 1.5rem 1rem;
        flex-direction: column;
        gap: 1rem;
        min-height: auto;
        background-size: cover;
        margin: 0 0.5rem;
    }

    .hero-content {
        flex: none;
        width: 100%;
    }

    .hero-characters {
        display: none;
    }

    .bonus-box {
        padding: 1.5rem 1rem;
        max-width: 100%;
    }

    .bonus-label {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

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

    .btn-join-now {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .slots-section {
        padding: 2rem 0;
    }

    .slots-container {
        padding: 0 1rem;
    }

    .slots-nav {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

    .nav-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .slots-carousel {
        padding: 1rem;
    }

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

    .slots-count {
        font-size: 0.8rem;
    }

    .arrow-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .slot-title {
        font-size: 0.75rem;
        padding: 0.8rem 0.3rem 0.3rem;
    }

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

    .play-btn {
        font-size: 0.85rem;
        padding: 10px 24px;
    }

    .content-wrapper {
        padding: 1.5rem 1rem;
        margin: 1rem 0.5rem;
        width: calc(100% - 1rem);
        gap: 1.5rem;
    }

    .content-block {
        padding: 1.5rem;
        width: 100%;
    }

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

    .section-title-primary {
        font-size: 1.4rem;
        padding-left: 0.8rem;
        border-left-width: 3px;
    }

    .section-title-secondary {
        font-size: 1.3rem;
    }

    .section-title-tertiary {
        font-size: 1.2rem;
        padding-left: 1.5rem;
    }

    .subsection-title {
        font-size: 1rem;
        padding-left: 0.8rem;
    }

    .content-wrapper p {
        font-size: 0.95rem;
    }

    .content-wrapper ol,
    .content-wrapper ul {
        padding-right: 1.5rem;
    }

    .content-wrapper ol li::before {
        right: -1.5rem;
        font-size: 0.9rem;
        width: 1.3rem;
        height: 1.3rem;
    }

    .content-wrapper ul li::before {
        right: -1.2rem;
        font-size: 0.8rem;
        width: 1rem;
        height: 1rem;
    }

    .info-table-wrapper {
        overflow-x: auto;
        margin: 1.5rem 0;
        -webkit-overflow-scrolling: touch;
    }

    .info-table {
        min-width: 100%;
        font-size: 0.85rem;
    }

    .info-table td {
        padding: 1rem 0.8rem;
        display: block;
        width: 100% !important;
        border-right: none !important;
    }

    .table-label {
        font-size: 0.85rem;
        font-weight: 800;
        background: transparent !important;
        padding-bottom: 0.5rem !important;
    }

    .table-value {
        font-size: 0.8rem;
        padding-top: 0 !important;
        padding-bottom: 1rem !important;
    }

    .info-table tr {
        display: block;
        margin-bottom: 1rem;
        border-bottom: 2px solid rgba(212, 175, 55, 0.2) !important;
    }

    .bonus-block-horizontal {
        flex-direction: column;
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }

    .bonus-title-horizontal {
        font-size: 1.3rem;
    }

    .bonus-description-horizontal {
        font-size: 0.9rem;
    }

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

    .bonus-features-horizontal li {
        font-size: 0.8rem;
    }

    .bonus-claim-btn-horizontal {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .faq-grid {
        flex-direction: column;
    }

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

    .faq-answer {
        font-size: 0.9rem;
        padding: 0 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }

    footer {
        padding: 0;
        width: 100%;
        overflow-x: hidden;
    }

    .footer-content {
        padding: 2rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }


    .age-badge-small {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }

    .footer-bottom {
        padding: 1.5rem 1rem 1.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-bottom p {
        font-size: 0.75rem;
        padding: 0 0.5rem;
    }

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

    .cookie-banner {
        padding: 1rem 0;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 1rem;
    }

    .cookie-icon {
        font-size: 2rem;
    }

    .cookie-title {
        font-size: 1rem;
    }

    .cookie-description {
        font-size: 0.8rem;
    }

    .cookie-accept-btn {
        width: 100%;
        padding: 10px 30px;
        font-size: 0.9rem;
    }

    .game-container {
        padding: 1.5rem;
    }

    .answers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.8rem;
    }

    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.8rem;
        padding: 0 0.8rem;
    }

    .brand-text {
        font-size: 1.2rem;
        text-align: left;
        letter-spacing: 1px;
    }

    .btn-play-now {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-container {
        width: calc(100% - 1rem);
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .bonus-box {
        padding: 1.2rem 0.8rem;
    }

    .bonus-label {
        font-size: 0.6rem;
        padding: 3px 8px;
    }

    .bonus-amount {
        font-size: 1.3rem;
    }

    .btn-join-now {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .slots-container {
        padding: 0 0.5rem;
    }

    .slots-carousel {
        padding: 0.8rem;
    }

    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-wrapper {
        margin: 0.5rem;
        padding: 1rem 0.8rem;
        width: calc(100% - 1rem);
        gap: 1rem;
    }

    .content-block {
        padding: 1rem;
        width: 100%;
    }

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

    .section-title-primary {
        font-size: 1.1rem;
        padding-left: 0.6rem;
    }

    .section-title-secondary {
        font-size: 1rem;
    }

    .section-title-tertiary {
        font-size: 0.95rem;
        padding-left: 1.2rem;
    }

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

    .content-wrapper p {
        font-size: 0.85rem;
    }

    .content-wrapper ol,
    .content-wrapper ul {
        padding-right: 1.2rem;
    }

    .content-wrapper ol li::before {
        right: -1.2rem;
        font-size: 0.8rem;
        width: 1.1rem;
        height: 1.1rem;
    }

    .content-wrapper ul li::before {
        right: -1rem;
        font-size: 0.7rem;
        width: 0.9rem;
        height: 0.9rem;
    }

    .bonus-block-horizontal {
        padding: 1rem;
        margin: 1rem 0;
    }

    .bonus-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }

    .bonus-title-horizontal {
        font-size: 1rem;
    }

    .bonus-description-horizontal {
        font-size: 0.8rem;
    }

    .bonus-features-horizontal li {
        font-size: 0.75rem;
    }

    .bonus-claim-btn-horizontal {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .footer-content {
        padding: 1.5rem 0.8rem;
    }


    .age-badge-small {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .footer-bottom {
        padding: 1.2rem 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.7rem;
        padding: 0 0.3rem;
    }

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 18, 12, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(210, 105, 30, 0.6);
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-title {
    color: #D2691E;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin: 0 0 0.5rem 0;
}

.cookie-description {
    color: rgba(228, 197, 158, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.cookie-accept-btn {
    background: linear-gradient(135deg, #D2691E 0%, #8B4513 100%);
    color: #fff;
    border: 2px solid rgba(201, 169, 97, 0.5);
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.cookie-accept-btn:hover {
    background: linear-gradient(135deg, #E07B2E 0%, #A0522D 100%);
    transform: scale(1.05);
    border-color: rgba(201, 169, 97, 0.8);
    box-shadow: 0 5px 20px rgba(210, 105, 30, 0.5);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

/* Modern Luxury Font Override */
body {
    font-family: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* Desert Gold Title Override */
.bonus-title-horizontal {
    background: linear-gradient(180deg, #D2691E 0%, #C9A961 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-size: 2.2rem !important;
}

/* Desert Steps List */
.luxury-steps {
    list-style: none;
    counter-reset: luxury-counter;
    margin: 1.5rem 0;
    padding: 0;
}

.luxury-steps li {
    counter-increment: luxury-counter;
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.luxury-steps li::before {
    content: counter(luxury-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(180deg, #D2691E 0%, #8B4513 100%);
    border: 2px solid #C9A961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 8px rgba(210, 105, 30, 0.4), inset 0 1px 2px rgba(228, 197, 158, 0.3);
}


