/* ============================================
   EGYPTWIN THEME - main.css (moban-84)
   Classic Slots Egyptian Theme with Pyramids
   Colors: #1A0F00 bg, #C5A028 gold, #D2B48C sand, #5C3317 brown
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', sans-serif;
    background: #1A0F00;
    color: #D2B48C;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Philosopher', serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: #C5A028;
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(197, 160, 40, 0.5);
}

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

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

.gold-text {
    color: #C5A028;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes pyramidRise {
    0% {
        transform: translateY(60px) scale(0.9);
        opacity: 0;
    }
    60% {
        transform: translateY(-5px) scale(1.02);
        opacity: 0.9;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes sandstormSwirl {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateX(30px) translateY(-15px) rotate(90deg);
        opacity: 0.4;
    }
    50% {
        transform: translateX(60px) translateY(5px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateX(20px) translateY(-10px) rotate(270deg);
        opacity: 0.3;
    }
    100% {
        transform: translateX(0) translateY(0) rotate(360deg);
        opacity: 0.7;
    }
}

@keyframes hieroglyphReveal {
    0% {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes scarabCrawl {
    0% {
        transform: translateX(-100%) scaleX(1);
    }
    49% {
        transform: translateX(100%) scaleX(1);
    }
    50% {
        transform: translateX(100%) scaleX(-1);
    }
    100% {
        transform: translateX(-100%) scaleX(-1);
    }
}

@keyframes sandFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(15px);
        opacity: 0.7;
    }
}

@keyframes goldenGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(197, 160, 40, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(197, 160, 40, 0.6), 0 0 60px rgba(197, 160, 40, 0.2);
    }
}

@keyframes hieroglyphScroll {
    0% { background-position: 0 0; }
    100% { background-position: 200px 0; }
}

@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #1A0F00 0%, #2A1A05 100%);
    border-bottom: 2px solid #C5A028;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(197, 160, 40, 0.4));
}

.header-time {
    color: #D2B48C;
    font-size: 14px;
    font-family: 'Philosopher', serif;
    letter-spacing: 1px;
}

.header-btn-group {
    display: flex;
    gap: 10px;
}

.btn-login {
    background: transparent;
    border: 1px solid #C5A028;
    color: #C5A028;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.btn-login:hover {
    background: rgba(197, 160, 40, 0.15);
    color: #fff;
    box-shadow: 0 0 10px rgba(197, 160, 40, 0.3);
}

.btn-register {
    background: linear-gradient(135deg, #C5A028, #D4AF37);
    color: #1A0F00;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Cairo', sans-serif;
}

.btn-register:hover {
    background: linear-gradient(135deg, #D4AF37, #E5C048);
    color: #1A0F00;
    box-shadow: 0 0 15px rgba(197, 160, 40, 0.5);
    transform: translateY(-1px);
}

.btn-demo {
    background: linear-gradient(135deg, #5C3317, #7A4520);
    color: #D2B48C;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 1px solid #8B5E3C;
    font-family: 'Cairo', sans-serif;
}

.btn-demo:hover {
    background: linear-gradient(135deg, #7A4520, #8B5E3C);
    color: #fff;
    box-shadow: 0 0 10px rgba(92, 51, 23, 0.5);
}

/* === MAIN NAVIGATION === */
.main-navigation {
    background: linear-gradient(90deg, #2A1A05, #1A0F00, #2A1A05);
    border-top: 1px solid rgba(197, 160, 40, 0.2);
    border-bottom: 1px solid rgba(197, 160, 40, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #D2B48C;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Cairo', sans-serif;
}

.nav-link:hover {
    color: #C5A028;
    background: rgba(197, 160, 40, 0.1);
    text-shadow: 0 0 8px rgba(197, 160, 40, 0.5);
}

.nav-link i {
    margin-right: 4px;
    color: #C5A028;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #C5A028;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #5C3317, #2A1A05, #5C3317);
    padding: 8px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(197, 160, 40, 0.15);
}

.notification-content {
    display: flex;
    gap: 60px;
    animation: scrollNotification 30s linear infinite;
    white-space: nowrap;
    color: #D2B48C;
    font-size: 12px;
}

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

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.announcement-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #1A0F00, #2A1A05);
    border: 2px solid #C5A028;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    z-index: 1;
    animation: pyramidRise 0.6s ease-out;
    box-shadow: 0 0 40px rgba(197, 160, 40, 0.3);
}

.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #C5A028;
    font-size: 28px;
    cursor: pointer;
    z-index: 2;
}

.announcement-close:hover {
    color: #fff;
}

.announcement-header-icon {
    text-align: center;
    font-size: 40px;
    color: #C5A028;
    margin-bottom: 15px;
    animation: goldenGlow 2s ease-in-out infinite;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: rgba(197, 160, 40, 0.1);
    border: 2px solid rgba(197, 160, 40, 0.3);
}

.announcement-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(197, 160, 40, 0.08);
    border: 1px solid rgba(197, 160, 40, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #D2B48C;
}

.announcement-item:hover {
    background: rgba(197, 160, 40, 0.15);
    border-color: #C5A028;
    transform: translateX(5px);
}

.announcement-badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.announcement-badge.hot {
    background: #C0392B;
    color: #fff;
}

.announcement-badge.new {
    background: #C5A028;
    color: #1A0F00;
}

.announcement-badge.info {
    background: #5C3317;
    color: #D2B48C;
    border: 1px solid #C5A028;
}

.announcement-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
}

.announcement-footer {
    text-align: center;
}

.announcement-cta {
    display: inline-block;
    background: linear-gradient(135deg, #C5A028, #D4AF37);
    color: #1A0F00;
    padding: 12px 35px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(197, 160, 40, 0.5);
    color: #1A0F00;
}

/* === BUTTONS === */
.btn-gold-primary {
    display: inline-block;
    background: linear-gradient(135deg, #C5A028, #D4AF37);
    color: #1A0F00;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: none;
    font-family: 'Philosopher', serif;
}

.btn-gold-primary:hover {
    background: linear-gradient(135deg, #D4AF37, #E5C048);
    color: #1A0F00;
    box-shadow: 0 5px 25px rgba(197, 160, 40, 0.5);
    transform: translateY(-2px);
}

.btn-outline-gold {
    display: inline-block;
    border: 2px solid #C5A028;
    color: #C5A028;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
    text-transform: uppercase;
    font-family: 'Philosopher', serif;
}

.btn-outline-gold:hover {
    background: rgba(197, 160, 40, 0.15);
    color: #fff;
    box-shadow: 0 5px 20px rgba(197, 160, 40, 0.3);
    transform: translateY(-2px);
}

/* === SECTION TITLES === */
.section-title {
    text-align: center;
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 8px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C5A028, transparent);
}

.section-title i {
    margin-right: 8px;
}

.section-subtitle {
    text-align: center;
    color: #8B7355;
    font-size: 15px;
    margin-bottom: 35px;
    margin-top: 15px;
}

/* === EGYPT HERO SECTION === */
.egypt-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg,
        #1A0F00 0%,
        #3D2B1F 20%,
        #8B5E3C 45%,
        #C5A028 65%,
        #D4AF37 75%,
        #8B5E3C 90%,
        #1A0F00 100%
    );
    margin: -15px -15px 30px -15px;
    border-bottom: 3px solid #C5A028;
}

/* Sand Particles */
.sand-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.sand-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #D2B48C;
    border-radius: 50%;
    opacity: 0.6;
}

.sand-p-1 { top: 20%; left: 10%; animation: sandFloat 4s ease-in-out infinite; animation-delay: 0s; }
.sand-p-2 { top: 40%; left: 25%; animation: sandFloat 5s ease-in-out infinite; animation-delay: 0.5s; width: 3px; height: 3px; }
.sand-p-3 { top: 30%; left: 45%; animation: sandFloat 3.5s ease-in-out infinite; animation-delay: 1s; width: 5px; height: 5px; }
.sand-p-4 { top: 50%; left: 60%; animation: sandFloat 4.5s ease-in-out infinite; animation-delay: 1.5s; }
.sand-p-5 { top: 25%; left: 75%; animation: sandFloat 5.5s ease-in-out infinite; animation-delay: 0.3s; width: 3px; height: 3px; }
.sand-p-6 { top: 60%; left: 85%; animation: sandFloat 3s ease-in-out infinite; animation-delay: 2s; width: 6px; height: 6px; }
.sand-p-7 { top: 35%; left: 5%; animation: sandFloat 4.2s ease-in-out infinite; animation-delay: 0.8s; }
.sand-p-8 { top: 55%; left: 40%; animation: sandFloat 5.8s ease-in-out infinite; animation-delay: 1.2s; width: 3px; height: 3px; }

/* Pyramid Background */
.pyramid-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    z-index: 1;
}

.pyramid-main {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 180px solid transparent;
    border-right: 180px solid transparent;
    border-bottom: 250px solid rgba(92, 51, 23, 0.6);
    filter: drop-shadow(0 0 20px rgba(197, 160, 40, 0.2));
    animation: pyramidRise 1.5s ease-out;
}

.pyramid-small {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 120px solid rgba(92, 51, 23, 0.4);
    animation: pyramidRise 1.5s ease-out 0.3s both;
}

.pyramid-left {
    left: 15%;
}

.pyramid-right {
    right: 15%;
}

/* Sphinx Silhouette */
.sphinx-silhouette {
    position: absolute;
    bottom: 10px;
    right: 10%;
    width: 120px;
    height: 60px;
    background: rgba(26, 15, 0, 0.5);
    clip-path: polygon(20% 100%, 0% 60%, 15% 30%, 30% 10%, 50% 0%, 65% 10%, 75% 30%, 100% 50%, 85% 100%);
    z-index: 1;
    animation: pyramidRise 2s ease-out 0.5s both;
}

/* Hieroglyph Borders */
.hieroglyph-border {
    position: absolute;
    left: 0;
    width: 100%;
    height: 30px;
    background: repeating-linear-gradient(
        90deg,
        rgba(197, 160, 40, 0.3) 0px,
        rgba(197, 160, 40, 0.1) 10px,
        transparent 10px,
        transparent 20px,
        rgba(197, 160, 40, 0.2) 20px,
        rgba(197, 160, 40, 0.05) 30px,
        transparent 30px,
        transparent 40px
    );
    animation: hieroglyphScroll 8s linear infinite;
    z-index: 3;
}

.hieroglyph-top {
    top: 0;
    border-bottom: 1px solid rgba(197, 160, 40, 0.3);
}

.hieroglyph-bottom {
    bottom: 0;
    border-top: 1px solid rgba(197, 160, 40, 0.3);
}

/* Hero Inner Content */
.hero-inner-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.hero-main-title {
    margin-bottom: 20px;
    animation: fadeSlideUp 1s ease-out;
}

.hero-brand {
    display: block;
    font-size: 56px;
    font-family: 'Philosopher', serif;
    color: #C5A028;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(197, 160, 40, 0.6), 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-divider-line {
    display: block;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C5A028, transparent);
    margin: 15px auto;
}

.hero-tagline {
    display: block;
    font-size: 22px;
    font-family: 'Philosopher', serif;
    color: #D2B48C;
    letter-spacing: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-description {
    color: #D2B48C;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 30px;
    font-family: 'Philosopher', serif;
    color: #C5A028;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(197, 160, 40, 0.4);
}

.hero-stat-label {
    font-size: 12px;
    color: #8B7355;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === SCARAB GAMES (6 Cards) === */
.scarab-games {
    padding: 50px 0;
}

.scarab-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.scarab-game-card {
    display: block;
    background: linear-gradient(135deg, #2A1A05, #1A0F00);
    border: 1px solid rgba(197, 160, 40, 0.2);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color: #D2B48C;
}

.scarab-game-card:hover {
    border-color: #C5A028;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(197, 160, 40, 0.2);
    color: #D2B48C;
}

.scarab-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 40, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.scarab-game-card:hover .scarab-game-glow {
    opacity: 1;
}

.scarab-game-icon {
    font-size: 36px;
    color: #C5A028;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.scarab-game-rating {
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.scarab-game-rating i {
    color: #C5A028;
    font-size: 12px;
    margin: 0 1px;
}

.scarab-game-card h3 {
    font-size: 18px;
    color: #C5A028;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.scarab-game-card p {
    font-size: 13px;
    color: #8B7355;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.scarab-game-players {
    font-size: 11px;
    color: #6B5B45;
    position: relative;
    z-index: 1;
}

.scarab-game-players i {
    color: #C5A028;
    margin-right: 4px;
}

/* === PHARAOH GRID (3x4 Game Grid) === */
.pharaoh-grid {
    padding: 50px 0;
    background: linear-gradient(180deg, transparent, rgba(197, 160, 40, 0.03), transparent);
}

.pharaoh-grid-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pharaoh-grid-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pharaoh-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 25px;
    background: linear-gradient(135deg, rgba(42, 26, 5, 0.8), rgba(26, 15, 0, 0.9));
    border: 1px solid rgba(197, 160, 40, 0.25);
    border-radius: 8px;
    transition: all 0.4s ease;
    min-width: 130px;
    text-align: center;
    color: #D2B48C;
    position: relative;
    overflow: hidden;
}

.pharaoh-grid-node::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 40, 0.1), transparent);
    transition: left 0.5s ease;
}

.pharaoh-grid-node:hover::before {
    left: 100%;
}

.pharaoh-grid-node:hover {
    border-color: #C5A028;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(197, 160, 40, 0.2);
    color: #D2B48C;
}

.node-gem {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(197, 160, 40, 0.2), rgba(92, 51, 23, 0.3));
    border: 2px solid rgba(197, 160, 40, 0.4);
    color: #C5A028;
    font-size: 18px;
    transition: all 0.3s ease;
}

.pharaoh-grid-node:hover .node-gem {
    background: radial-gradient(circle, rgba(197, 160, 40, 0.4), rgba(92, 51, 23, 0.5));
    border-color: #C5A028;
    box-shadow: 0 0 15px rgba(197, 160, 40, 0.4);
    animation: pulseGold 0.6s ease-in-out;
}

.node-label {
    font-size: 13px;
    font-weight: 600;
    color: #D2B48C;
    letter-spacing: 0.5px;
}

/* === ANKH FEATURES (4 Features) === */
.ankh-features {
    padding: 50px 0;
}

.ankh-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ankh-feature-card {
    background: linear-gradient(135deg, #2A1A05, #1A0F00);
    border: 1px solid rgba(197, 160, 40, 0.2);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ankh-feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C5A028, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ankh-feature-card:hover::before {
    transform: scaleX(1);
}

.ankh-feature-card:hover {
    border-color: #C5A028;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(197, 160, 40, 0.15);
}

.ankh-feature-icon {
    margin-bottom: 18px;
}

.ankh-icon-symbol {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(197, 160, 40, 0.15), transparent);
    border: 2px solid rgba(197, 160, 40, 0.3);
    position: relative;
}

.ankh-icon-symbol::before {
    content: '☥';
    font-size: 28px;
    color: #C5A028;
}

.ankh-feature-card h3 {
    font-size: 16px;
    color: #C5A028;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.ankh-feature-card p {
    font-size: 13px;
    color: #8B7355;
    line-height: 1.7;
}

/* === DESERT STATS (4 Counters) === */
.desert-stats {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.desert-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(92, 51, 23, 0.1), rgba(197, 160, 40, 0.05));
    z-index: 0;
}

.sand-layer-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(0deg, rgba(210, 180, 140, 0.05), transparent);
}

.desert-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.desert-stat-card {
    background: linear-gradient(135deg, #2A1A05, #1A0F00);
    border: 1px solid rgba(197, 160, 40, 0.25);
    border-radius: 10px;
    padding: 30px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: goldenGlow 3s ease-in-out infinite;
}

.desert-stat-card:nth-child(2) { animation-delay: 0.5s; }
.desert-stat-card:nth-child(3) { animation-delay: 1s; }
.desert-stat-card:nth-child(4) { animation-delay: 1.5s; }

.stat-scarab-decoration {
    color: #C5A028;
    font-size: 16px;
    opacity: 0.5;
    margin-bottom: 10px;
}

.stat-scarab-decoration.bottom {
    margin-bottom: 0;
    margin-top: 10px;
}

.stat-number {
    font-size: 36px;
    font-family: 'Philosopher', serif;
    color: #C5A028;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(197, 160, 40, 0.3);
}

.stat-label {
    font-size: 13px;
    color: #8B7355;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === OASIS PROMOTIONS (3 Cards) === */
.oasis-promos {
    padding: 50px 0;
}

.oasis-promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.oasis-promo-card {
    background: linear-gradient(135deg, #2A1A05, #1A0F00);
    border: 1px solid rgba(197, 160, 40, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.oasis-promo-card:hover {
    border-color: #C5A028;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(197, 160, 40, 0.2);
}

.promo-sand-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(197, 160, 40, 0.08), transparent 70%);
    pointer-events: none;
}

.oasis-promo-inner {
    padding: 25px 20px;
    position: relative;
    z-index: 1;
}

.promo-icon {
    font-size: 30px;
    color: #C5A028;
    margin-bottom: 15px;
    text-align: center;
}

.oasis-promo-inner h3 {
    font-size: 17px;
    color: #C5A028;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-align: center;
}

.oasis-promo-inner p {
    font-size: 13px;
    color: #8B7355;
    line-height: 1.7;
    margin-bottom: 15px;
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #6B5B45;
}

.promo-badge {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.promo-badge.hot {
    background: #C0392B;
    color: #fff;
}

.promo-badge.new {
    background: #C5A028;
    color: #1A0F00;
}

.promo-badge.vip {
    background: #5C3317;
    color: #C5A028;
    border: 1px solid #C5A028;
}

.btn-promo {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #C5A028, #D4AF37);
    color: #1A0F00;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #D4AF37, #E5C048);
    color: #1A0F00;
    box-shadow: 0 5px 15px rgba(197, 160, 40, 0.4);
    transform: translateY(-1px);
}

/* === FOOTER CTA === */
.footer-cta-section {
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 30px 0;
    background: linear-gradient(180deg, rgba(92, 51, 23, 0.1), rgba(197, 160, 40, 0.05), rgba(92, 51, 23, 0.1));
    border-top: 1px solid rgba(197, 160, 40, 0.15);
    border-bottom: 1px solid rgba(197, 160, 40, 0.15);
}

.footer-cta-sandfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sand-layer-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgba(210, 180, 140, 0.03), transparent);
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-pyramid-decoration {
    margin-bottom: 20px;
}

.cta-pyramid-shape {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 40px solid rgba(197, 160, 40, 0.3);
    margin: 0 auto;
    filter: drop-shadow(0 0 10px rgba(197, 160, 40, 0.3));
}

.footer-cta-inner h2 {
    font-size: 30px;
    color: #C5A028;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.footer-cta-inner p {
    color: #D2B48C;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-feature {
    color: #D2B48C;
    font-size: 14px;
    font-weight: 600;
}

.cta-feature i {
    color: #C5A028;
    margin-right: 6px;
}

.cta-main-btn {
    font-size: 18px;
    padding: 16px 40px;
}

/* === NEWS SECTION === */
.home-news-section {
    padding: 50px 0;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.home-news-placeholder {
    display: contents;
}

.article-card {
    display: block;
    background: linear-gradient(135deg, #2A1A05, #1A0F00);
    border: 1px solid rgba(197, 160, 40, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #D2B48C;
}

.article-card:hover {
    border-color: #C5A028;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(197, 160, 40, 0.15);
    color: #D2B48C;
}

.article-card-thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-card-thumb img {
    transform: scale(1.05);
}

.article-card-title {
    padding: 15px 15px 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: #D2B48C;
    min-height: 50px;
}

.article-card-title span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: #6B5B45;
    margin-bottom: 8px;
}

.article-card-meta i {
    margin-right: 4px;
    color: #C5A028;
}

.article-card-excerpt {
    padding: 0 15px 15px;
    font-size: 13px;
    color: #8B7355;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-more {
    display: inline-block;
    padding: 8px 15px 15px;
    color: #C5A028;
    font-size: 13px;
    font-weight: 600;
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    border: 1px solid rgba(197, 160, 40, 0.3);
    border-radius: 6px;
    color: #C5A028;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    max-width: 200px;
    margin: 0 auto;
    letter-spacing: 1px;
}

.view-more-btn:hover {
    background: rgba(197, 160, 40, 0.1);
    border-color: #C5A028;
    color: #fff;
    box-shadow: 0 5px 15px rgba(197, 160, 40, 0.2);
}

.gold-view-more i {
    margin-left: 6px;
}

/* === SITE FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #1A0F00, #0D0800);
    border-top: 3px solid #C5A028;
    padding: 50px 0 30px;
    margin-top: 30px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand-logo {
    margin-bottom: 15px;
}

.footer-brand-logo img {
    height: 45px;
    filter: drop-shadow(0 0 5px rgba(197, 160, 40, 0.3));
}

.footer-brand-text {
    font-size: 13px;
    color: #8B7355;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid #C0392B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #C0392B;
    margin-bottom: 15px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 40, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A028;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: rgba(197, 160, 40, 0.15);
    border-color: #C5A028;
    color: #fff;
}

.footer-col h4 {
    font-size: 15px;
    color: #C5A028;
    margin-bottom: 18px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #C5A028;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #8B7355;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #C5A028;
    padding-left: 5px;
}

/* License Bar */
.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(197, 160, 40, 0.15);
    border-bottom: 1px solid rgba(197, 160, 40, 0.15);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-size: 14px;
    color: #C5A028;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.license-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #8B7355;
    font-size: 12px;
}

.license-item i {
    font-size: 24px;
    color: #C5A028;
    opacity: 0.7;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
}

.footer-copyright {
    color: #6B5B45;
    font-size: 13px;
}

/* === SIDEBAR (Floating) === */
.floating-sidebar {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
}

.sidebar-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2A1A05, #1A0F00);
    border: 1px solid rgba(197, 160, 40, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A028;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    background: rgba(197, 160, 40, 0.15);
    border-color: #C5A028;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(197, 160, 40, 0.3);
}

.sidebar-btn-facebook:hover { background: rgba(59, 89, 152, 0.3); border-color: #3B5998; color: #3B5998; }
.sidebar-btn-telegram:hover { background: rgba(0, 136, 204, 0.3); border-color: #0088CC; color: #0088CC; }

.sidebar-label {
    display: none;
    position: absolute;
    right: 55px;
    background: #1A0F00;
    color: #D2B48C;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid rgba(197, 160, 40, 0.3);
}

.sidebar-btn:hover .sidebar-label {
    display: block;
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: #6B5B45;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #C5A028;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: #6B5B45;
}

/* === CONTENT AREA === */
.content-area {
    display: flex;
    gap: 25px;
    padding: 10px 0;
}

.main-content {
    flex: 1;
    min-width: 0;
}

/* === ARTICLE GRID (Blog/Category) === */
.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #2A1A05, #1A0F00);
    border: 1px solid rgba(197, 160, 40, 0.15);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.article-title {
    font-size: 28px;
    color: #C5A028;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #6B5B45;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(197, 160, 40, 0.1);
}

.article-meta i {
    color: #C5A028;
    margin-right: 4px;
}

.article-meta a {
    color: #C5A028;
}

.article-featured-img {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.article-featured-img img {
    width: 100%;
    height: auto;
}

.article-content {
    color: #D2B48C;
    font-size: 15px;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 15px;
}

.article-content h2, .article-content h3 {
    color: #C5A028;
    margin: 25px 0 10px;
}

.article-content a {
    color: #C5A028;
    text-decoration: underline;
}

.article-content img {
    border-radius: 8px;
    margin: 15px 0;
}

.article-tags {
    padding: 15px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(197, 160, 40, 0.1);
    color: #8B7355;
    font-size: 13px;
}

.article-tags i {
    color: #C5A028;
    margin-right: 8px;
}

.article-tags span {
    display: inline-block;
    background: rgba(197, 160, 40, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
    margin: 0 4px;
    font-size: 12px;
    color: #D2B48C;
}

.article-tags span a {
    color: #D2B48C;
}

/* Article Nav */
.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    margin-top: 15px;
    border-top: 1px solid rgba(197, 160, 40, 0.1);
}

.article-nav a {
    color: #C5A028;
    font-size: 14px;
}

/* === RELATED POSTS === */
.related-posts {
    margin-bottom: 30px;
}

.related-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

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

.related-item {
    display: block;
    background: linear-gradient(135deg, #2A1A05, #1A0F00);
    border: 1px solid rgba(197, 160, 40, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #D2B48C;
}

.related-item:hover {
    border-color: #C5A028;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 160, 40, 0.15);
    color: #D2B48C;
}

.related-item-thumb {
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-item-title {
    padding: 10px;
    font-size: 13px;
    color: #D2B48C;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === CATEGORY HEADER === */
.category-header {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

.category-title {
    font-size: 26px;
    letter-spacing: 2px;
}

.category-desc {
    color: #8B7355;
    font-size: 14px;
    margin-top: 10px;
}

/* === PROVIDER TABS === */
.provider-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 25px;
}

.provider-tab {
    padding: 8px 18px;
    border: 1px solid rgba(197, 160, 40, 0.2);
    border-radius: 20px;
    background: transparent;
    color: #8B7355;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.provider-tab:hover {
    border-color: #C5A028;
    color: #C5A028;
}

.provider-tab.active {
    background: linear-gradient(135deg, #C5A028, #D4AF37);
    color: #1A0F00;
    border-color: #C5A028;
}

/* === PAGINATION === */
.pagination {
    text-align: center;
    padding: 20px 0;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(197, 160, 40, 0.2);
    border-radius: 6px;
    color: #D2B48C;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #C5A028;
    color: #1A0F00;
    border-color: #C5A028;
}

/* === ERROR PAGE === */
.error-page {
    text-align: center;
    padding: 80px 20px;
}

.error-pyramid {
    margin-bottom: 25px;
}

.error-pyramid-shape {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 70px solid rgba(197, 160, 40, 0.3);
    margin: 0 auto;
    filter: drop-shadow(0 0 15px rgba(197, 160, 40, 0.3));
}

.error-code {
    font-size: 80px;
    color: #C5A028;
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(197, 160, 40, 0.3);
}

.error-title {
    font-size: 24px;
    color: #D2B48C;
    margin: 10px 0 20px;
    letter-spacing: 2px;
}

.error-desc {
    color: #8B7355;
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* === PAGE TEMPLATE === */
.page-article {
    background: linear-gradient(135deg, #2A1A05, #1A0F00);
    border: 1px solid rgba(197, 160, 40, 0.15);
    border-radius: 10px;
    padding: 30px;
}

.page-title {
    font-size: 28px;
    color: #C5A028;
    margin-bottom: 20px;
}

.page-featured-img {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.page-content {
    color: #D2B48C;
    font-size: 15px;
    line-height: 1.8;
}

.page-content p {
    margin-bottom: 15px;
}

/* === NO POSTS === */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #8B7355;
    font-size: 16px;
    grid-column: 1 / -1;
}

/* === SCARAB CRAWL DECORATION === */
.scarab-crawl-line {
    position: relative;
    height: 20px;
    overflow: hidden;
    margin: 10px 0;
}

.scarab-crawl-line::after {
    content: '🪲  🪲  🪲  🪲  🪲';
    position: absolute;
    top: 0;
    white-space: nowrap;
    font-size: 12px;
    animation: scarabCrawl 12s linear infinite;
    opacity: 0.3;
}
