:root {
    /* Core Fonts - From actual Cleobetra styles */
    --stb-font-primary: "Inter", "Arial", sans-serif;
    --stb-font-helper: "Helvetica", sans-serif;
    
    /* Authentic Cleobetra Color Variables - From Screenshot */
    --stb-black: 0 0 0;
    --stb-white: 255 255 255;
    
    /* Main Background Colors - Reddish Brown Theme */
    --stb-primary-bg: 139 69 53; /* Dark reddish-brown */
    --stb-secondary-bg: 171 101 87; /* Medium reddish-brown */
    --stb-tertiary-bg: 195 131 118; /* Light reddish-brown */
    --stb-sidebar-bg: 78 47 42; /* Very dark brown for sidebar */
    
    /* Gold/Orange Theme Colors */
    --stb-gold-primary: 255 215 0; /* Bright gold for logo */
    --stb-gold-secondary: 255 193 7; /* Medium gold */
    --stb-orange-primary: 255 152 51; /* Orange for login button */
    --stb-orange-secondary: 255 126 31; /* Darker orange */
    --stb-orange-gradient-start: 255 171 64; /* Orange gradient start */
    --stb-orange-gradient-end: 255 133 27; /* Orange gradient end */
    
    /* Register Button Colors */
    --stb-cyan-primary: 23 192 235; /* Bright cyan */
    --stb-cyan-secondary: 3 169 244; /* Medium cyan */
    
    /* Text Colors */
    --stb-text-primary: rgb(var(--stb-white));
    --stb-text-secondary: rgb(240 230 210); /* Cream text */
    --stb-text-gold: rgb(var(--stb-gold-primary));
    --stb-text-dark: rgb(var(--stb-black));
    
    /* Active/Hover States */
    --stb-active-bg: 255 171 64; /* Orange for active states */
    --stb-hover-overlay: 255 255 255; /* White overlay for hovers */
}

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

body {
    font-family: var(--stb-font-primary);
    line-height: 1.6;
    color: var(--stb-text-primary);
    background: linear-gradient(135deg, rgb(var(--stb-primary-bg)) 0%, rgb(var(--stb-secondary-bg)) 50%, rgb(var(--stb-primary-bg)) 100%);
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, rgb(var(--stb-sidebar-bg)) 0%, rgb(var(--stb-primary-bg)) 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Enhanced Header Layout */
.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
    min-height: 70px;
    max-width: 900px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--stb-text-gold);
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

nav {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0.7rem;
    margin: 0;
    flex-wrap: nowrap;
    align-items: center;
}

nav li {
    display: flex;
    align-items: center;
    justify-content: center;
}

nav a {
    color: var(--stb-text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    min-height: 40px;
    font-size: 0.95rem;
}

nav a:hover {
    color: var(--stb-text-gold);
    background: rgba(var(--stb-active-bg), 0.2);
}

/* Authentication Buttons */
.auth-buttons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-shrink: 0;
}

.btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.btn-login {
    background: linear-gradient(135deg, rgb(var(--stb-orange-gradient-start)) 0%, rgb(var(--stb-orange-gradient-end)) 100%);
    color: var(--stb-text-dark);
    border: 2px solid transparent;
}

.btn-login:hover {
    background: linear-gradient(135deg, rgb(var(--stb-orange-primary)) 0%, rgb(var(--stb-orange-secondary)) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--stb-orange-primary), 0.4);
}

.btn-register {
    background: linear-gradient(135deg, rgb(var(--stb-cyan-primary)) 0%, rgb(var(--stb-cyan-secondary)) 100%);
    color: var(--stb-text-primary);
    border: 2px solid transparent;
}

.btn-register:hover {
    background: linear-gradient(135deg, rgb(var(--stb-cyan-secondary)) 0%, rgb(var(--stb-cyan-primary)) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--stb-cyan-primary), 0.4);
}

/* Hero Section - Image Only */
.hero {
    /* Fallback background */
    background-color: rgb(var(--stb-primary-bg));
    background: linear-gradient(
        135deg, 
        rgba(var(--stb-sidebar-bg), 0.6) 0%, 
        rgba(var(--stb-primary-bg), 0.5) 50%,
        rgba(var(--stb-secondary-bg), 0.6) 100%
    );
    /* Fixed path to herogr3.webp */
    background-image: url('./all/herogr3.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 60vh;
    max-height: 600px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Welcome Content Section - Centered */
.welcome-section {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, rgb(var(--stb-primary-bg)) 0%, rgb(var(--stb-secondary-bg)) 100%);
    text-align: center;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.welcome-section h1 {
    font-size: 3.2rem;
    font-weight: bold;
    color: var(--stb-text-gold);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    text-align: center;
    line-height: 1.2;
}

.welcome-section p {
    font-size: 1.4rem;
    color: var(--stb-text-primary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    text-align: center;
}

/* Remove old hero content styles */
.hero-content {
    display: none;
}

/* Section Styles */
.section {
    padding: 2rem 0;
}

.section:nth-child(even) {
    background: rgba(var(--stb-secondary-bg), 0.3);
}

/* Games Section - Temple Gaming Chambers */
.section#games {
    background: linear-gradient(
        135deg, 
        rgba(var(--stb-sidebar-bg), 0.9) 0%, 
        rgba(var(--stb-primary-bg), 0.8) 50%,
        rgba(var(--stb-secondary-bg), 0.9) 100%
    ), url('./all/herocleo5.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.section#games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--stb-sidebar-bg), 0.4);
    z-index: 1;
}

.section#games .container {
    position: relative;
    z-index: 2;
}

.section#games h2,
.section#games p {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.section h2 {
    font-size: 2.5rem;
    color: var(--stb-text-gold);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Card Styles */
.card {
    background: linear-gradient(135deg, rgba(var(--stb-sidebar-bg), 0.8) 0%, rgba(var(--stb-primary-bg), 0.6) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--stb-gold-primary), 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* Bonus Highlight */
.bonus-highlight {
    background: linear-gradient(135deg, rgba(var(--stb-orange-gradient-start), 0.2) 0%, rgba(var(--stb-orange-gradient-end), 0.1) 100%);
    border: 2px solid rgba(var(--stb-gold-primary), 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.bonus-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(var(--stb-gold-primary), 0.15) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.bonus-highlight h3 {
    font-size: 1.8rem;
    color: var(--stb-text-gold);
    margin-bottom: 1rem;
}

.bonus-highlight p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Enhanced Bonus Highlight with Frame */
.bonus-highlight-framed {
    background: linear-gradient(135deg, rgba(var(--stb-orange-gradient-start), 0.3) 0%, rgba(var(--stb-orange-gradient-end), 0.2) 100%);
    border: 3px solid var(--stb-text-gold);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(var(--stb-gold-primary), 0.1);
}

.bonus-highlight-framed::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--stb-text-gold) 0%, 
        rgba(var(--stb-orange-gradient-start), 0.8) 25%,
        var(--stb-text-gold) 50%,
        rgba(var(--stb-orange-gradient-end), 0.8) 75%,
        var(--stb-text-gold) 100%
    );
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.bonus-highlight-framed::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(var(--stb-gold-primary), 0.15) 50%, transparent 70%);
    animation: shimmerFrame 4s infinite;
    z-index: 1;
}

@keyframes shimmerFrame {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.bonus-highlight-framed h3 {
    font-size: 2rem;
    color: var(--stb-text-gold);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.bonus-highlight-framed p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
    color: var(--stb-text-primary);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.bonus-highlight-framed p strong {
    color: var(--stb-text-gold);
    font-size: 1.3rem;
}

.bonus-highlight-framed .cta-button {
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 15px 30px;
}

/* Grid Layouts */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1rem 0;
}

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

.promotion {
    background: linear-gradient(135deg, rgba(var(--stb-sidebar-bg), 0.9) 0%, rgba(var(--stb-primary-bg), 0.7) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(var(--stb-gold-primary), 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.promotion:hover {
    transform: translateY(-3px);
}

.promotion img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.promotion h3 {
    color: var(--stb-text-gold);
    margin-bottom: 1rem;
}

.promotion p {
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.promotion .cta-button {
    margin-top: auto;
}

/* Game Categories */
.game-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.game-category {
    background: linear-gradient(135deg, rgba(var(--stb-sidebar-bg), 0.8) 0%, rgba(var(--stb-primary-bg), 0.6) 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(var(--stb-gold-primary), 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    overflow: hidden;
}

.game-category:hover {
    transform: translateY(-5px);
}

.game-category-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.game-category:hover .category-img {
    transform: scale(1.05);
}

.game-category h3 {
    color: var(--stb-text-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.game-category p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Tournaments */
.tournaments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tournament {
    background: linear-gradient(135deg, rgba(var(--stb-sidebar-bg), 0.9) 0%, rgba(var(--stb-primary-bg), 0.7) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(var(--stb-gold-primary), 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.tournament::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(var(--stb-orange-gradient-start), 0.8), rgba(var(--stb-orange-gradient-end), 0.8));
}

.tournament h4 {
    color: var(--stb-text-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.tournament p {
    margin-bottom: 0.5rem;
}

.tournament p strong {
    color: var(--stb-text-gold);
}

/* VIP Levels */
.vip-levels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    justify-content: center;
}

.vip-levels .row-2 {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 1rem auto 0;
}

.vip-level {
    background: linear-gradient(135deg, rgba(var(--stb-sidebar-bg), 0.9) 0%, rgba(var(--stb-primary-bg), 0.7) 100%);
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    border: 1px solid rgba(var(--stb-gold-primary), 0.2);
    transition: transform 0.3s ease;
    min-width: 280px;
}

.vip-level:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--stb-gold-primary), 0.5);
}

.vip-level h4 {
    color: var(--stb-text-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.vip-level p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, rgb(var(--stb-orange-gradient-start)) 0%, rgb(var(--stb-orange-gradient-end)) 100%);
    color: var(--stb-text-dark);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--stb-orange-primary), 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--stb-orange-primary), 0.5);
    background: linear-gradient(135deg, rgb(var(--stb-orange-primary)) 0%, rgb(var(--stb-orange-secondary)) 100%);
}

/* Lists */
ul {
    list-style: none;
}

ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

ul li::before {
    content: '⚱️';
    position: absolute;
    left: 0;
    color: var(--stb-text-gold);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgb(var(--stb-tertiary-bg)) 0%, rgb(var(--stb-secondary-bg)) 50%, rgb(var(--stb-tertiary-bg)) 100%);
    text-align: center;
    padding: 1.5rem 0;
}

.cta-section h2 {
    color: var(--stb-text-gold);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-section p {
    color: var(--stb-text-primary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: rgb(var(--stb-sidebar-bg));
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(var(--stb-gold-primary), 0.2);
}

.footer p {
    color: var(--stb-text-secondary);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content {
        max-width: 800px;
        gap: 0.8rem;
        justify-content: center;
    }
    
    nav ul {
        gap: 0.5rem;
    }
    
    nav a {
        padding: 0.3rem 0.6rem;
        font-size: 0.9rem;
    }
    
    .auth-buttons {
        gap: 0.6rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .logo-img {
        height: 45px;
        max-width: 150px;
    }
    
    .hero {
        height: 50vh;
        max-height: 500px;
    }
    
    .welcome-section h1 {
        font-size: 2.8rem;
    }
    
    .game-category {
        min-height: 350px;
    }
    
    .game-category-image {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 1rem;
        max-width: 100%;
    }
    
    .logo {
        order: 1;
        margin-bottom: 0.5rem;
    }
    
    .auth-buttons {
        order: 2;
        margin-bottom: 0.5rem;
    }
    
    nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    nav ul {
        flex-wrap: wrap;
        gap: 0.4rem;
        justify-content: center;
    }
    
    .logo-img {
        height: 40px;
        max-width: 120px;
    }
    
    .hero {
        height: 40vh;
        max-height: 400px;
    }
    
    .section#games {
        background-attachment: scroll;
    }
    
    .section#promotions,
    .section#vip {
        background-attachment: scroll;
    }
    
    .welcome-section {
        padding: 1.5rem 0;
    }
    
    .welcome-content {
        padding: 0 1rem;
    }
    
    .welcome-section h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .welcome-section p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .promotional-image {
        max-width: 100%;
        height: auto;
        min-height: 150px;
        margin: 1.5rem auto;
    }
    
    .vip-promotional-image {
        max-width: 100%;
        height: auto;
        min-height: 120px;
        margin: 1rem auto;
    }
    
    .promotions {
        grid-template-columns: 1fr;
    }
    
    .game-categories {
        grid-template-columns: 1fr;
    }
    
    .game-category {
        min-height: auto;
        padding: 1.5rem;
    }
    
    .game-category-image {
        height: 150px;
    }
    
    .tournaments {
        grid-template-columns: 1fr;
    }
    
    .vip-levels {
        grid-template-columns: 1fr;
    }
    
    .vip-levels .row-2 {
        grid-template-columns: 1fr;
        max-width: none;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .bonus-highlight-framed {
        padding: 2rem 1.5rem;
        margin: 1.5rem auto;
        border-radius: 15px;
    }
    
    .bonus-highlight-framed h3 {
        font-size: 1.6rem;
    }
    
    .bonus-highlight-framed p {
        font-size: 1.1rem;
    }
    
    .bonus-highlight-framed .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .bonus-highlight {
        padding: 1.5rem;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn {
        width: 120px;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Promotions Section - Remove background, will add separate images */
.section#promotions {
    background: linear-gradient(135deg, rgba(var(--stb-sidebar-bg), 0.9) 0%, rgba(var(--stb-primary-bg), 0.8) 50%, rgba(var(--stb-secondary-bg), 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.section#promotions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--stb-sidebar-bg), 0.2);
    z-index: 1;
}

.section#promotions .container {
    position: relative;
    z-index: 2;
}

.section#promotions h2,
.section#promotions p {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* VIP Section - Remove background, will add separate images */
.section#vip {
    background: linear-gradient(135deg, rgba(var(--stb-sidebar-bg), 0.9) 0%, rgba(var(--stb-primary-bg), 0.8) 50%, rgba(var(--stb-secondary-bg), 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.section#vip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--stb-sidebar-bg), 0.2);
    z-index: 1;
}

.section#vip .container {
    position: relative;
    z-index: 2;
}

.section#vip h2,
.section#vip p {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Promotional Images Styles */
.promotional-image {
    width: 100%;
    max-width: 780px;
    height: auto;
    min-height: 200px;
    object-fit: contain;
    border-radius: 12px;
    margin: 1rem auto;
    display: block;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border: 2px solid rgba(var(--stb-gold-primary), 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promotional-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    border-color: rgba(var(--stb-gold-primary), 0.6);
}

.section-image-container {
    text-align: center;
    margin: 1rem 0;
}

.vip-promotional-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    min-height: 180px;
    object-fit: contain;
    border-radius: 12px;
    margin: 0.75rem auto;
    display: block;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border: 2px solid rgba(var(--stb-gold-primary), 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vip-promotional-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    border-color: rgba(var(--stb-gold-primary), 0.6);
}

.bonus-highlight-framed {
    padding: 2rem 1.5rem;
    margin: 1.5rem auto;
    border-radius: 15px;
}

.bonus-highlight-framed h3 {
    font-size: 1.6rem;
}

.bonus-highlight-framed p {
    font-size: 1.1rem;
}

.bonus-highlight-framed .cta-button {
    padding: 12px 24px;
    font-size: 1rem;
}

/* ==========================================================================
   REVIEWS SECTION STYLES
   ========================================================================== */

.reviews-section {
    background: linear-gradient(135deg, rgba(var(--stb-sidebar-bg), 0.95) 0%, rgba(var(--stb-primary-bg), 0.9) 50%, rgba(var(--stb-secondary-bg), 0.95) 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--stb-sidebar-bg), 0.1);
    z-index: 1;
}

.reviews-section .container {
    position: relative;
    z-index: 2;
}

.reviews-section h2 {
    text-align: center;
    color: var(--stb-text-gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Reviews Slider Controls */
.reviews-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.slider-btn {
    background: linear-gradient(135deg, rgb(var(--stb-gold-primary)) 0%, rgb(var(--stb-gold-secondary)) 100%);
    border: 2px solid rgb(var(--stb-gold-accent));
    color: rgb(var(--stb-primary-bg));
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(var(--stb-gold-primary), 0.3);
}

.slider-btn:hover {
    background: linear-gradient(135deg, rgb(var(--stb-gold-accent)) 0%, rgb(var(--stb-gold-primary)) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--stb-gold-primary), 0.5);
}

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

.slider-indicators {
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(var(--stb-gold-primary), 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(var(--stb-gold-primary), 0.5);
}

.indicator.active,
.indicator:hover {
    background: rgb(var(--stb-gold-primary));
    border-color: rgb(var(--stb-gold-accent));
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(var(--stb-gold-primary), 0.6);
}

/* Reviews Slider Container */
.reviews-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.reviews-slide {
    display: none;
    animation: fadeInSlide 0.5s ease-in-out;
}

.reviews-slide.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Review Card Styles */
.review-card {
    background: linear-gradient(135deg, rgba(var(--stb-primary-bg), 0.9) 0%, rgba(var(--stb-secondary-bg), 0.8) 100%);
    border: 2px solid rgba(var(--stb-gold-primary), 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--stb-gold-primary), 0.1), transparent);
    transition: left 0.6s ease;
}

.review-card:hover::before {
    left: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--stb-gold-primary), 0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info h4 {
    color: var(--stb-text-gold);
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.reviewer-location {
    color: var(--stb-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.reviewer-vip {
    background: linear-gradient(135deg, rgb(var(--stb-gold-primary)) 0%, rgb(var(--stb-gold-secondary)) 100%);
    color: rgb(var(--stb-primary-bg));
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(var(--stb-gold-primary), 0.3);
}

.review-rating {
    font-size: 1.2rem;
    line-height: 1;
}

.review-text {
    color: var(--stb-text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.review-text::before {
    content: '"';
    color: var(--stb-gold-primary);
    font-size: 2rem;
    position: absolute;
    left: -10px;
    top: -5px;
    font-family: serif;
}

.review-text::after {
    content: '"';
    color: var(--stb-gold-primary);
    font-size: 2rem;
    position: absolute;
    right: -5px;
    bottom: -10px;
    font-family: serif;
}

.review-date {
    color: var(--stb-text-secondary);
    font-size: 0.85rem;
    text-align: right;
    opacity: 0.8;
}

/* Reviews CTA */
.reviews-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(var(--stb-gold-primary), 0.1) 0%, rgba(var(--stb-gold-secondary), 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(var(--stb-gold-primary), 0.2);
}

.reviews-cta h3 {
    color: var(--stb-text-gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.reviews-cta p {
    color: var(--stb-text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-button.mega {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgb(var(--stb-gold-primary)) 0%, rgb(var(--stb-gold-secondary)) 100%);
    color: rgb(var(--stb-primary-bg));
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(var(--stb-gold-primary), 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.mega:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(var(--stb-gold-primary), 0.5);
    background: linear-gradient(135deg, rgb(var(--stb-gold-accent)) 0%, rgb(var(--stb-gold-primary)) 100%);
}

/* Responsive Reviews Section */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .reviews-slider-controls {
        gap: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
    
    .reviews-cta {
        padding: 2rem 1rem;
    }
    
    .reviews-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-button.mega {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
} 