/*
Theme Name: Sky Casino
Theme URI: https://skycasino.com
Description: Custom theme for Sky Casino
Version: 1.0
Author: Developer
Text Domain: skycasino
*/

/* Google Fonts - Outfit loaded via functions.php wp_enqueue_style */

/* ========================================
   CSS Variables / Color Scheme
   ======================================== */
:root {
    --primary-dark: #0a0e24;
    --primary-teal: #12205a;
    --accent-gold: #4d8bff;
    --accent-orange: #82b1ff;
    --text-light: #e8f0ff;
    --text-secondary: #8899cc;
    --card-bg: #0f1535;
    --border-color: #1a2a6a;
    --spotlight-gradient-start: #1a3a8a;
    --spotlight-gradient-end: #2a5ad4;
    --pattern-bg: #2a5ad4;
    --primary-teal-strong: #04adc0;
    --accent-orange-dark: #ff9c28;
    --incentive-bg-dark: #000f10;
    --incentive-bg: #001b1f;
    --incentive-bg-light: #003036;
    --incentive-bg-rgb: 0,27,31;
    --btn-bg: #ffd800;
    --btn-bg-dark: #d9b800;
    --btn-bg-light: #ffde26;
    --btn-bg-rgb: 255,216,0;
    --btn-text: #1a1a2e;
    --text-muted: #5b8889;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
    letter-spacing: 0.015em;
    word-spacing: 0.05em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-gold);
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header Styles
   ======================================== */
.main-header {
    background-color: var(--primary-dark);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-logo img {
    height: 40px;
    width: auto;
}

.main-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-list a {
    color: var(--text-light);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 12px;
}

/* ========================================
   Button Styles
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--btn-bg);
    color: var(--btn-text);
}

.btn-primary:hover {
    background-color: var(--btn-bg-dark);
    color: var(--btn-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--btn-bg-rgb), 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--accent-orange);
    color: var(--primary-dark);
}

.btn-secondary:hover {
    background-color: var(--accent-orange-dark);
    color: var(--primary-dark);
}

.btn-xl {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ========================================
   Hero Section
   ======================================== */

/* Hero Pattern Color Variables (customize per brand) */
:root {
    --spotlight-pattern-color: rgba(0, 0, 0, 0.12);
}

.spotlight-section {
    background: var(--primary-dark);
    padding: 100px 0 40px;
    min-height: auto;
    position: relative;
}

.spotlight-section > .container {
    display: block;
    width: 100%;
}

/* Hero Pattern Container - Rounded box with gradient + pattern */
.spotlight-pattern-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    overflow: hidden;
    /* Gradient background */
    background: linear-gradient(135deg, var(--spotlight-gradient-start) 0%, var(--spotlight-gradient-end) 100%);
    /* Pattern will be applied via JS */
    background-repeat: repeat;
}

/* Pattern icon color layer */
.spotlight-pattern-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: inherit;
    color: var(--spotlight-pattern-color);
}

.spotlight-inner {
    position: relative;
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    min-height: 500px;
    width: 100%;
}

.spotlight-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 50px;
    min-height: 500px;
}

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

.spotlight-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.2;
}

.spotlight-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* New inline bonus styles matching reference */
.spotlight-incentive-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.incentive-icon-inline {
    font-size: 2rem;
}

.incentive-text-inline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
}

.spotlight-incentive-extra {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 500;
}

/* Hero image wrapper */
.spotlight-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.spotlight-image {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Legacy bonus box styles (keeping for backward compatibility) */
.spotlight-bonus {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-strong) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.incentive-text {
    font-size: 1.4rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 15px;
}

.incentive-details {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ========================================
   Game Categories Section
   ======================================== */
.game-categories {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.segment-title {
    text-align: center;
    margin-bottom: 50px;
}

.segment-title h2 {
    margin-bottom: 15px;
}

.segment-title p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--primary-teal) 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-gold);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    width: 50px;
    height: 50px;
}

.category-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--accent-gold);
}

.category-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.category-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* ========================================
   About Section / Info Table
   ======================================== */
.overview-section {
    padding: 80px 0;
    background-color: var(--primary-teal);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-content h2 {
    margin-bottom: 20px;
}

.overview-content p {
    margin-bottom: 25px;
}

.spec-table {
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

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

.spec-table tr {
    border-bottom: 1px solid var(--border-color);
}

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

.spec-table td {
    padding: 18px 25px;
}

.spec-table td:first-child {
    color: var(--text-secondary);
    font-weight: 500;
    width: 40%;
}

.spec-table td:last-child {
    color: var(--text-light);
    font-weight: 600;
}

/* ========================================
   Game Sections (Slots, Roulette, etc.)
   ======================================== */
.game-section {
    padding: 80px 0;
}

.game-section:nth-child(even) {
    background-color: var(--primary-teal);
}

.game-section:nth-child(odd) {
    background-color: var(--primary-dark);
}

.game-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.game-grid.reverse {
    direction: rtl;
}

.game-grid.reverse > * {
    direction: ltr;
}

.game-content h2 {
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.game-content p {
    margin-bottom: 20px;
}

.game-features {
    margin-bottom: 25px;
}

.game-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.game-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.game-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-image img {
    width: 100%;
    display: block;
}

/* ========================================
   Payment Methods Section
   ======================================== */
.transaction-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

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

.transaction-box {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.transaction-box h3 {
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.transaction-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

/* Unified Payment Methods Block */
.transaction-methods-unified {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.transaction-method {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-dark);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    border: none;
}

.transaction-method svg {
    width: 40px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 4px;
}

.transaction-info {
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.transaction-info p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.transaction-info strong {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .transaction-methods-unified {
        padding: 20px 15px;
        gap: 10px;
    }

    .transaction-method {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .transaction-method svg {
        width: 32px;
        height: 22px;
    }
}

/* ========================================
   FAQ Section
   ======================================== */
.support-qa-section {
    padding: 40px 0 50px;
    background-color: var(--primary-dark);
}

.support-qa-list {
    max-width: 800px;
    margin: 0 auto;
}

.support-qa-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.support-qa-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.support-qa-question:hover {
    background-color: var(--primary-teal);
    border-radius: 12px;
}

/* When FAQ item is open and hovered, only round top corners */
.support-qa-item.active .support-qa-question:hover {
    border-radius: 11px 11px 0 0;
}

/* FAQ toggle button styling */
.support-qa-toggle {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.support-qa-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.support-qa-item.active .support-qa-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.support-qa-answer p {
    color: var(--text-secondary);
}

/* ========================================
   Footer Styles
   ======================================== */
.main-base {
    background-color: var(--primary-dark);
    padding: 60px 0 100px;
    border-top: 1px solid var(--border-color);
}

.end-bar-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.end-bar-column h4,
.end-bar-column .end-bar-title {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}

.end-bar-column ul li {
    margin-bottom: 12px;
}

.end-bar-column ul li a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.end-bar-column ul li a:hover {
    color: var(--accent-gold);
}

/* Old end-bar-bonus styles removed - now using premium .end-bar-incentive-box in custom.css */

.provider-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.provider-logos img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.provider-logos img:hover {
    opacity: 1;
}

.end-bar-bottom {
    text-align: center;
    padding-top: 20px;
}

.end-bar-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.adult-only-notice {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--card-bg);
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.adult-badge {
    background-color: #c00;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
}

/* ========================================
   Steps Section (Registration, Login, etc.)
   ======================================== */
.process-flow-section {
    padding: 80px 0;
}

.process-flow-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.process-flow-grid.four-steps {
    grid-template-columns: repeat(4, 1fr);
}

.phase-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
}

.phase-number {
    width: 40px;
    height: 40px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 20px;
}

.phase-card h4 {
    margin-bottom: 12px;
    font-size: 1rem;
}

.phase-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.step-image {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* ========================================
   Features Grid
   ======================================== */
.highlights-section {
    padding: 80px 0;
    background-color: var(--primary-teal);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.highlights-grid.five-cols {
    grid-template-columns: repeat(5, 1fr);
}

.highlight-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: var(--primary-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--accent-gold);
}

.highlight-card h4 {
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ========================================
   Loyalty / VIP Section
   ======================================== */
.privilege-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.exclusive-levels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.exclusive-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--primary-teal) 100%);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.exclusive-card.featured {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.exclusive-badge {
    font-size: 2rem;
    margin-bottom: 15px;
}

.exclusive-card h4 {
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.exclusive-perks {
    text-align: left;
}

.exclusive-perks li {
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.exclusive-perks li:last-child {
    border-bottom: none;
}

/* ========================================
   Special Offers Section
   ======================================== */
.campaigns-section {
    padding: 80px 0;
    background-color: var(--primary-teal);
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.campaign-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.campaign-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.campaign-content h4 {
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.campaign-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ========================================
   Promo Code Section
   ======================================== */
.promo-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.promo-box {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-strong) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.promo-box h3 {
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.promo-box p {
    margin-bottom: 25px;
}

.promo-input {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.promo-input input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-size: 1rem;
}

.promo-input input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* ========================================
   Troubleshooting Section
   ======================================== */
.problem-solve-section {
    padding: 80px 0;
    background-color: var(--primary-teal);
}

.problem-solve-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.problem-solve-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.problem-solve-card h4 {
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.problem-solve-card p {
    margin-bottom: 15px;
}

/* ========================================
   Platform Guides (Android/iOS)
   ======================================== */
.app-guide-section {
    padding: 80px 0;
}

.app-guide-section.android {
    background-color: var(--primary-dark);
}

.app-guide-section.ios {
    background-color: var(--primary-teal);
}

.app-guide-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.app-guide-icon {
    width: 50px;
    height: 50px;
}

.app-guide-header h2 {
    margin: 0;
}

/* ========================================
   Trust Section
   ======================================== */
.credibility-section {
    padding: 80px 0;
    background-color: var(--primary-teal);
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.credibility-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.credibility-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credibility-card h4 {
    margin-bottom: 12px;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-orange { color: var(--accent-orange); }
.text-light { color: var(--text-light); }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* ========================================
   Responsive Adjustments (Desktop Focus)
   ======================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .exclusive-levels {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-flow-grid,
    .process-flow-grid.four-steps {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

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

    .problem-solve-grid {
        grid-template-columns: 1fr;
    }

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

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

    .highlights-grid,
    .highlights-grid.five-cols {
        grid-template-columns: 1fr;
    }

    .exclusive-levels {
        grid-template-columns: 1fr;
    }

    .exclusive-card.featured {
        transform: none;
    }

    .process-flow-grid,
    .process-flow-grid.four-steps {
        grid-template-columns: 1fr;
    }

    .end-bar-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .spotlight-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .spotlight-title {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }
}
