:root {
    /* New Unique Palace Color Palette */
    --palace-deep-burgundy: 101 31 47;
    --palace-rich-gold: 218 165 32;
    --palace-royal-purple: 75 0 130;
    --palace-emerald-green: 0 100 63;
    --palace-sapphire-blue: 0 71 171;
    --palace-midnight-black: 13 13 13;
    --palace-ivory-white: 255 250 240;
    --palace-bronze-accent: 205 127 50;
    --palace-silver-mist: 192 192 192;
    
    /* Typography */
    --pharaoh-font-primary: "Cinzel", "Georgia", serif;
    --pharaoh-font-secondary: "Montserrat", "Arial", sans-serif;
}

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

.pharaoh-realm {
    font-family: var(--pharaoh-font-secondary);
    background: linear-gradient(135deg, rgb(var(--palace-deep-burgundy)) 0%, rgb(var(--palace-midnight-black)) 50%, rgb(var(--palace-deep-burgundy)) 100%);
    color: rgb(var(--palace-ivory-white));
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Navigation Palace */
.palace-navbar {
    background: linear-gradient(135deg, rgba(var(--palace-midnight-black), 0.95) 0%, rgba(var(--palace-deep-burgundy), 0.9) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(var(--palace-rich-gold), 0.3);
    backdrop-filter: blur(20px);
    border-bottom: 3px solid rgb(var(--palace-rich-gold));
}

.royal-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.dynasty-logo {
    font-family: var(--pharaoh-font-primary);
    font-size: 1.8rem;
    font-weight: bold;
    color: rgb(var(--palace-rich-gold));
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    flex-shrink: 0;
}

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

.pharaoh-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 600px;
}

.royal-menu-list {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.royal-menu-list a {
    color: rgb(var(--palace-ivory-white));
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    text-align: center;
}

.royal-menu-list a:hover {
    color: rgb(var(--palace-rich-gold));
    background: rgba(var(--palace-rich-gold), 0.1);
    transform: translateY(-2px);
}

.royal-authentication {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-shrink: 0;
}

.golden-entrance-btn, .sapphire-crown-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.golden-entrance-btn {
    background: linear-gradient(135deg, rgb(var(--palace-bronze-accent)) 0%, rgb(var(--palace-rich-gold)) 100%);
    color: rgb(var(--palace-midnight-black));
}

.sapphire-crown-btn {
    background: linear-gradient(135deg, rgb(var(--palace-sapphire-blue)) 0%, rgb(var(--palace-emerald-green)) 100%);
    color: rgb(var(--palace-ivory-white));
}

.golden-entrance-btn:hover, .sapphire-crown-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--palace-rich-gold), 0.4);
}

/* VIP Table Styles */
.vip-royal-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(var(--palace-midnight-black), 0.8) 0%, rgba(var(--palace-deep-burgundy), 0.6) 100%);
    border: 3px solid rgb(var(--palace-rich-gold));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(var(--palace-rich-gold), 0.3);
    margin: 2rem 0;
}

.vip-table-header {
    background: linear-gradient(135deg, rgb(var(--palace-rich-gold)) 0%, rgb(var(--palace-bronze-accent)) 100%);
    color: rgb(var(--palace-midnight-black));
}

.vip-table-header th {
    padding: 1.5rem 1rem;
    font-family: var(--pharaoh-font-primary);
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    border-right: 2px solid rgba(var(--palace-midnight-black), 0.2);
}

.vip-table-header th:last-child {
    border-right: none;
}

.vip-table-row {
    border-bottom: 2px solid rgba(var(--palace-rich-gold), 0.3);
    transition: all 0.3s ease;
}

.vip-table-row:hover {
    background: rgba(var(--palace-rich-gold), 0.1);
    transform: scale(1.02);
}

.vip-table-row td {
    padding: 1.2rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(var(--palace-rich-gold), 0.2);
    vertical-align: middle;
}

.vip-table-row td:last-child {
    border-right: none;
}

.vip-tier-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.vip-tier-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgb(var(--palace-rich-gold));
}

.vip-tier-info h4 {
    color: rgb(var(--palace-rich-gold));
    font-family: var(--pharaoh-font-primary);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.vip-tier-requirement {
    color: rgb(var(--palace-bronze-accent));
    font-size: 0.9rem;
    font-style: italic;
}

.vip-benefits-list {
    list-style: none;
    text-align: left;
    max-width: 300px;
}

.vip-benefits-list li {
    color: rgb(var(--palace-ivory-white));
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.vip-benefits-list li::before {
    content: "✦";
    color: rgb(var(--palace-rich-gold));
    position: absolute;
    left: 0;
    font-weight: bold;
}

.vip-cashback-highlight {
    background: linear-gradient(135deg, rgb(var(--palace-emerald-green)) 0%, rgb(var(--palace-sapphire-blue)) 100%);
    color: rgb(var(--palace-ivory-white));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.vip-withdrawal-highlight {
    background: linear-gradient(135deg, rgb(var(--palace-rich-gold)) 0%, rgb(var(--palace-bronze-accent)) 100%);
    color: rgb(var(--palace-midnight-black));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Hero Chamber */
.legendary-hero-chamber {
    background: linear-gradient(rgba(var(--palace-midnight-black), 0.4), rgba(var(--palace-deep-burgundy), 0.6)), url('./all/herogr3.webp');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.mystical-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.pharaoh-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.golden-dynasty-title {
    font-family: var(--pharaoh-font-primary);
    font-size: 4rem;
    color: rgb(var(--palace-rich-gold));
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 3px 3px 6px rgba(0,0,0,0.8); }
    100% { text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 0 0 20px rgba(var(--palace-rich-gold), 0.6); }
}

.ancient-proclamation {
    font-size: 1.8rem;
    color: rgb(var(--palace-silver-mist));
    margin-bottom: 1rem;
    font-style: italic;
}

.royal-description {
    font-size: 1.3rem;
    color: rgb(var(--palace-ivory-white));
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.imperial-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.magnificent-treasure-btn {
    display: inline-block;
    background: linear-gradient(135deg, rgb(var(--palace-rich-gold)) 0%, rgb(var(--palace-bronze-accent)) 100%);
    color: rgb(var(--palace-midnight-black));
    padding: 1.2rem 3rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(var(--palace-rich-gold), 0.4);
    animation: treasureButtonPulse 2s infinite;
}

@keyframes treasureButtonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.royal-stats-showcase {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.golden-stat {
    background: rgba(var(--palace-rich-gold), 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    border: 2px solid rgb(var(--palace-rich-gold));
    font-weight: bold;
    color: rgb(var(--palace-rich-gold));
}

/* VIP Pyramid Section */
.pyramid-excellence-realm {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(var(--palace-deep-burgundy), 0.9) 0%, rgba(var(--palace-midnight-black), 0.8) 100%);
    position: relative;
}

.pyramid-excellence-realm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./all/vip5.webp') center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.royal-section-heading {
    font-family: var(--pharaoh-font-primary);
    font-size: 3rem;
    color: rgb(var(--palace-rich-gold));
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.mystical-section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgb(var(--palace-silver-mist));
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Gaming Chambers */
.magnificent-gaming-palace {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(var(--palace-midnight-black), 0.9) 0%, rgba(var(--palace-deep-burgundy), 0.7) 100%);
}

.gaming-sanctuaries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.sacred-gaming-chamber {
    background: linear-gradient(135deg, rgba(var(--palace-midnight-black), 0.8) 0%, rgba(var(--palace-deep-burgundy), 0.6) 100%);
    border: 2px solid rgb(var(--palace-bronze-accent));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sacred-gaming-chamber:hover {
    transform: translateY(-8px);
    border-color: rgb(var(--palace-rich-gold));
    box-shadow: 0 15px 40px rgba(var(--palace-rich-gold), 0.3);
}

.chamber-portal {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

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

.sacred-gaming-chamber:hover .mystical-chamber-img {
    transform: scale(1.1);
}

.portal-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(var(--palace-rich-gold), 0.9);
    color: rgb(var(--palace-midnight-black));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.chamber-title {
    font-family: var(--pharaoh-font-primary);
    font-size: 1.3rem;
    color: rgb(var(--palace-rich-gold));
    margin-bottom: 1rem;
}

.chamber-description {
    color: rgb(var(--palace-ivory-white));
    margin-bottom: 2rem;
    line-height: 1.6;
}

.enter-chamber-btn {
    display: inline-block;
    background: linear-gradient(135deg, rgb(var(--palace-emerald-green)) 0%, rgb(var(--palace-sapphire-blue)) 100%);
    color: rgb(var(--palace-ivory-white));
    padding: 0.8rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.enter-chamber-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--palace-emerald-green), 0.4);
}

/* Treasure Vault */
.golden-treasure-sanctuary {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(var(--palace-deep-burgundy), 0.9) 0%, rgba(var(--palace-royal-purple), 0.6) 100%);
}

.imperial-welcome-treasury {
    background: linear-gradient(135deg, rgba(var(--palace-rich-gold), 0.2) 0%, rgba(var(--palace-bronze-accent), 0.1) 100%);
    border: 3px solid rgb(var(--palace-rich-gold));
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.treasury-grand-title {
    font-family: var(--pharaoh-font-primary);
    font-size: 2.2rem;
    color: rgb(var(--palace-rich-gold));
    margin-bottom: 2rem;
}

.treasure-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.golden-bonus-highlight {
    text-align: center;
}

.massive-bonus-amount {
    font-size: 4rem;
    font-weight: bold;
    color: rgb(var(--palace-rich-gold));
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.bonus-descriptor {
    font-size: 1.5rem;
    color: rgb(var(--palace-ivory-white));
}

.royal-bonus-breakdown {
    display: grid;
    gap: 1rem;
    max-width: 500px;
}

.deposit-tier {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(var(--palace-midnight-black), 0.3);
    border-radius: 10px;
    border-left: 4px solid rgb(var(--palace-rich-gold));
}

.tier-label {
    font-weight: bold;
    color: rgb(var(--palace-rich-gold));
}

.tier-bonus {
    color: rgb(var(--palace-ivory-white));
}

.claim-treasury-btn {
    display: inline-block;
    background: linear-gradient(135deg, rgb(var(--palace-rich-gold)) 0%, rgb(var(--palace-bronze-accent)) 100%);
    color: rgb(var(--palace-midnight-black));
    padding: 1.2rem 3rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(var(--palace-rich-gold), 0.4);
}

.claim-treasury-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(var(--palace-rich-gold), 0.6);
}

/* Royal Promotions Gallery */
.royal-promotions-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.exclusive-promo-scroll {
    background: linear-gradient(135deg, rgba(var(--palace-midnight-black), 0.8) 0%, rgba(var(--palace-deep-burgundy), 0.6) 100%);
    border: 2px solid rgb(var(--palace-bronze-accent));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.exclusive-promo-scroll:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgb(var(--palace-rich-gold));
    box-shadow: 0 15px 40px rgba(var(--palace-rich-gold), 0.4);
}

.promo-papyrus {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    position: relative;
}

.promo-papyrus img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.exclusive-promo-scroll:hover .promo-papyrus img {
    transform: scale(1.1);
}

.promo-papyrus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(var(--palace-rich-gold), 0.2) 0%, rgba(var(--palace-bronze-accent), 0.1) 100%);
    z-index: 1;
}

.promo-decree-title {
    font-family: var(--pharaoh-font-primary);
    font-size: 1.4rem;
    color: rgb(var(--palace-rich-gold));
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.promo-royal-description {
    color: rgb(var(--palace-ivory-white));
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.claim-scroll-btn {
    display: inline-block;
    background: linear-gradient(135deg, rgb(var(--palace-emerald-green)) 0%, rgb(var(--palace-sapphire-blue)) 100%);
    color: rgb(var(--palace-ivory-white));
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(var(--palace-emerald-green), 0.3);
}

.claim-scroll-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(var(--palace-emerald-green), 0.5);
    background: linear-gradient(135deg, rgb(var(--palace-sapphire-blue)) 0%, rgb(var(--palace-emerald-green)) 100%);
}

/* Tournament Styles */
.legendary-tournaments-colosseum {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(var(--palace-midnight-black), 0.9) 0%, rgba(var(--palace-royal-purple), 0.7) 100%);
    position: relative;
}

.legendary-tournaments-colosseum::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./all/cleogames8.webp') center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.gladiator-tournaments-arena {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.epic-tournament-battle {
    background: linear-gradient(135deg, rgba(var(--palace-midnight-black), 0.8) 0%, rgba(var(--palace-deep-burgundy), 0.6) 100%);
    border: 3px solid rgb(var(--palace-bronze-accent));
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.epic-tournament-battle:hover {
    transform: translateY(-10px);
    border-color: rgb(var(--palace-rich-gold));
    box-shadow: 0 20px 50px rgba(var(--palace-rich-gold), 0.4);
}

.tournament-war-banner {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(var(--palace-rich-gold), 0.3);
}

.war-title {
    font-family: var(--pharaoh-font-primary);
    font-size: 1.5rem;
    color: rgb(var(--palace-rich-gold));
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.epic-prize-pool {
    background: linear-gradient(135deg, rgb(var(--palace-rich-gold)) 0%, rgb(var(--palace-bronze-accent)) 100%);
    color: rgb(var(--palace-midnight-black));
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.3rem;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(var(--palace-rich-gold), 0.4);
}

.battle-details-scroll {
    color: rgb(var(--palace-ivory-white));
}

.tournament-epic-description {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.tournament-victory-conditions {
    display: grid;
    gap: 0.8rem;
}

.condition {
    background: rgba(var(--palace-rich-gold), 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border-left: 4px solid rgb(var(--palace-rich-gold));
    font-weight: 600;
    color: rgb(var(--palace-ivory-white));
}

/* Testimonials */
.ancient-testimonials-library {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(var(--palace-midnight-black), 0.9) 0%, rgba(var(--palace-deep-burgundy), 0.8) 100%);
}

.sacred-scrolls-rotator {
    max-width: 1200px;
    margin: 0 auto;
}

.papyrus-navigation-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.scroll-arrow-btn {
    background: linear-gradient(135deg, rgb(var(--palace-rich-gold)) 0%, rgb(var(--palace-bronze-accent)) 100%);
    color: rgb(var(--palace-midnight-black));
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.scroll-arrow-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(var(--palace-rich-gold), 0.4);
}

.papyrus-dots-indicator {
    display: flex;
    gap: 1rem;
}

.scroll-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(var(--palace-ivory-white), 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgb(var(--palace-bronze-accent));
}

.scroll-dot.active-dot {
    background: rgb(var(--palace-rich-gold));
    transform: scale(1.3);
}

.testimonials-papyrus-container {
    position: relative;
    overflow: hidden;
}

.testimonial-papyrus-set {
    display: none;
    opacity: 0;
    transition: all 0.6s ease;
}

.testimonial-papyrus-set.active-papyrus {
    display: block;
    opacity: 1;
}

.royal-testimonials-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.ancient-testimonial-scroll {
    background: linear-gradient(135deg, rgba(var(--palace-midnight-black), 0.8) 0%, rgba(var(--palace-deep-burgundy), 0.6) 100%);
    border: 2px solid rgb(var(--palace-bronze-accent));
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ancient-testimonial-scroll:hover {
    border-color: rgb(var(--palace-rich-gold));
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(var(--palace-rich-gold), 0.3);
}

.testimonial-royal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.witness-noble-name {
    color: rgb(var(--palace-rich-gold));
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.witness-kingdom {
    color: rgb(var(--palace-silver-mist));
    font-size: 0.9rem;
    font-style: italic;
}

.golden-star-rating {
    font-size: 1.2rem;
}

.testimonial-preview-text {
    color: rgb(var(--palace-ivory-white));
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-full-scroll {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: rgb(var(--palace-ivory-white));
    line-height: 1.6;
}

.ancient-testimonial-scroll.expanded-scroll .testimonial-full-scroll {
    max-height: 300px;
    margin-bottom: 1rem;
}

.ancient-testimonial-scroll.expanded-scroll .testimonial-preview-text {
    display: none;
}

.testimonial-timestamp {
    color: rgb(var(--palace-bronze-accent));
    font-size: 0.8rem;
    text-align: right;
    margin-bottom: 1rem;
}

.expand-scroll-btn {
    background: linear-gradient(135deg, rgb(var(--palace-emerald-green)) 0%, rgb(var(--palace-sapphire-blue)) 100%);
    color: rgb(var(--palace-ivory-white));
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expand-scroll-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--palace-emerald-green), 0.4);
}

/* Final CTA */
.imperial-final-summons {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(var(--palace-royal-purple), 0.9) 0%, rgba(var(--palace-deep-burgundy), 0.8) 100%);
    text-align: center;
}

.royal-final-proclamation {
    max-width: 800px;
    margin: 0 auto;
}

.final-decree-title {
    font-family: var(--pharaoh-font-primary);
    font-size: 3rem;
    color: rgb(var(--palace-rich-gold));
    margin-bottom: 1.5rem;
}

.final-royal-message {
    font-size: 1.3rem;
    color: rgb(var(--palace-ivory-white));
    margin-bottom: 2rem;
}

.final-treasure-showcase {
    margin: 2rem 0;
}

.ultimate-bonus-display {
    font-size: 3rem;
    font-weight: bold;
    color: rgb(var(--palace-rich-gold));
    margin-bottom: 0.5rem;
}

.ultimate-bonus-terms {
    font-size: 1.1rem;
    color: rgb(var(--palace-silver-mist));
    margin-bottom: 2rem;
}

.ultimate-ascension-btn {
    display: inline-block;
    background: linear-gradient(135deg, rgb(var(--palace-rich-gold)) 0%, rgb(var(--palace-bronze-accent)) 100%);
    color: rgb(var(--palace-midnight-black));
    padding: 1.5rem 4rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(var(--palace-rich-gold), 0.5);
    animation: ultimateButtonGlow 3s ease-in-out infinite alternate;
}

@keyframes ultimateButtonGlow {
    0% { box-shadow: 0 10px 30px rgba(var(--palace-rich-gold), 0.5); }
    100% { box-shadow: 0 15px 40px rgba(var(--palace-rich-gold), 0.8); }
}

/* Footer */
.ancient-palace-footer {
    background: rgb(var(--palace-midnight-black));
    padding: 3rem 0;
    border-top: 3px solid rgb(var(--palace-rich-gold));
}

.footer-royal-proclamation {
    text-align: center;
    color: rgb(var(--palace-silver-mist));
}

.responsible-gaming-motto {
    color: rgb(var(--palace-rich-gold));
    font-style: italic;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .golden-dynasty-title {
        font-size: 2.5rem;
    }
    
    .royal-section-heading {
        font-size: 2rem;
    }
    
    .gaming-sanctuaries-grid {
        grid-template-columns: 1fr;
    }
    
    .royal-testimonials-collection {
        grid-template-columns: 1fr;
    }
    
    .royal-header-flex {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .dynasty-logo {
        order: 1;
    }
    
    .pharaoh-navigation {
        order: 2;
        width: 100%;
        max-width: none;
    }
    
    .royal-authentication {
        order: 3;
    }
    
    .royal-menu-list {
        gap: 0.3rem;
        justify-content: center;
    }
    
    .royal-menu-list a {
        font-size: 0.8rem;
        padding: 0.5rem 0.6rem;
    }
    
    .imperial-cta-actions {
        gap: 1.5rem;
    }
    
    .royal-stats-showcase {
        gap: 1rem;
    }
    
    .papyrus-navigation-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ultimate-ascension-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    /* VIP Table Mobile Styles */
    .vip-royal-table {
        font-size: 0.85rem;
    }
    
    .vip-table-header th {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .vip-table-row td {
        padding: 0.8rem 0.5rem;
    }
    
    .vip-tier-cell {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .vip-tier-image {
        width: 40px;
        height: 40px;
    }
    
    .vip-tier-info h4 {
        font-size: 0.9rem;
    }
    
    .vip-benefits-list {
        max-width: 200px;
    }
    
    .vip-benefits-list li {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .vip-cashback-highlight, .vip-withdrawal-highlight {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Bonuses Section Mobile */
    .royal-promotions-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .exclusive-promo-scroll {
        padding: 1.5rem;
    }
    
    .promo-papyrus {
        height: 150px;
    }
    
    .promo-decree-title {
        font-size: 1.2rem;
    }
    
    .promo-royal-description {
        font-size: 1rem;
    }
    
    .claim-scroll-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Tournament Section Mobile */
    .gladiator-tournaments-arena {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .epic-tournament-battle {
        padding: 1.5rem;
    }
    
    .war-title {
        font-size: 1.3rem;
    }
    
    .epic-prize-pool {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .tournament-epic-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .royal-header-flex {
        padding: 0.5rem 0;
    }
    
    .dynasty-logo {
        font-size: 1.5rem;
    }
    
    .imperial-logo-img {
        height: 35px;
        max-width: 150px;
    }
    
    .royal-menu-list {
        gap: 0.2rem;
    }
    
    .royal-menu-list a {
        font-size: 0.75rem;
        padding: 0.4rem 0.5rem;
    }
    
    .golden-entrance-btn, .sapphire-crown-btn {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    /* Stack VIP table vertically on very small screens */
    .vip-royal-table, .vip-table-header, .vip-table-row, .vip-table-header th, .vip-table-row td {
        display: block;
        width: 100%;
    }
    
    .vip-table-header th, .vip-table-row td {
        border-right: none;
        border-bottom: 1px solid rgba(var(--palace-rich-gold), 0.2);
        text-align: left;
        padding: 0.8rem 1rem;
    }
    
    .vip-table-header th::before {
        font-weight: bold;
        color: rgb(var(--palace-rich-gold));
    }
    
    .vip-table-row td::before {
        content: attr(data-label) ": ";
        font-weight: bold;
        color: rgb(var(--palace-rich-gold));
    }
    
    .vip-tier-cell {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
    }
}

/* VIP Progression CTA */
.vip-progression-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(var(--palace-rich-gold), 0.1) 0%, rgba(var(--palace-bronze-accent), 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(var(--palace-rich-gold), 0.3);
}

.royal-cta-heading {
    font-family: var(--pharaoh-font-primary);
    font-size: 2rem;
    color: rgb(var(--palace-rich-gold));
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.vip-journey-description {
    color: rgb(var(--palace-ivory-white));
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.ascend-pyramid-btn {
    display: inline-block;
    background: linear-gradient(135deg, rgb(var(--palace-emerald-green)) 0%, rgb(var(--palace-sapphire-blue)) 100%);
    color: rgb(var(--palace-ivory-white));
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(var(--palace-emerald-green), 0.3);
}

.ascend-pyramid-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(var(--palace-emerald-green), 0.5);
    background: linear-gradient(135deg, rgb(var(--palace-sapphire-blue)) 0%, rgb(var(--palace-emerald-green)) 100%);
} 