/* ============================================
   SAFARIBET THEME - main.css (moban-86)
   African Savanna Sunset Theme
   Colors: #E67E22 (orange), #27AE60 (green), #795548 (brown), bg #1A1005
   Fonts: Amatic SC (headings) + Nunito (body)
   ============================================ */

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

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

body {
    font-family: 'Nunito', 'Patrick Hand', sans-serif;
    background: #1A1005;
    color: #F5E6D3;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Amatic SC', 'Patrick Hand', cursive;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1px;
}

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

a:hover {
    color: #F39C12;
    text-shadow: 0 0 10px rgba(230, 126, 34, 0.5);
}

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

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

.orange-text {
    color: #E67E22;
}

.green-text {
    color: #27AE60;
}

.brown-text {
    color: #795548;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes grassSway {
    0%, 100% {
        transform: skewX(0deg) translateX(0);
    }
    25% {
        transform: skewX(3deg) translateX(5px);
    }
    50% {
        transform: skewX(-2deg) translateX(-3px);
    }
    75% {
        transform: skewX(4deg) translateX(4px);
    }
}

@keyframes sunsetGlow {
    0%, 100% {
        opacity: 0.6;
        filter: brightness(1);
    }
    50% {
        opacity: 1;
        filter: brightness(1.3);
    }
}

@keyframes animalStampede {
    0% {
        transform: translateX(-100%) scaleX(-1);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateX(120vw) scaleX(-1);
        opacity: 0;
    }
}

@keyframes binocularsZoom {
    0%, 100% {
        transform: scale(1);
        border-radius: 50%;
    }
    50% {
        transform: scale(1.15);
        border-radius: 50%;
    }
}

@keyframes savannaBreeze {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    33% { transform: translateX(10px) rotate(1deg); }
    66% { transform: translateX(-5px) rotate(-0.5deg); }
}

@keyframes pawPrint {
    0% { opacity: 0; transform: scale(0.5) rotate(-20deg); }
    50% { opacity: 1; transform: scale(1) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.8) rotate(10deg); }
}

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

@keyframes sunRays {
    0%, 100% { opacity: 0.3; transform: rotate(0deg); }
    50% { opacity: 0.7; transform: rotate(180deg); }
}

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

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

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

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

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #2C1810 0%, #1A1005 100%);
    border-bottom: 3px solid #E67E22;
    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: 10px 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.header-time {
    color: #E67E22;
    font-size: 14px;
    font-weight: 600;
    background: rgba(230, 126, 34, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(230, 126, 34, 0.3);
}

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

.btn-login {
    background: transparent;
    border: 2px solid #E67E22;
    color: #E67E22;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-login:hover {
    background: #E67E22;
    color: #1A1005;
    box-shadow: 0 0 15px rgba(230, 126, 34, 0.5);
}

.btn-register {
    background: linear-gradient(135deg, #E67E22, #F39C12);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-register:hover {
    background: linear-gradient(135deg, #F39C12, #E67E22);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
    color: #fff;
}

.btn-demo {
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-demo:hover {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
    color: #fff;
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(44, 24, 16, 0.95);
    border-top: 1px solid rgba(230, 126, 34, 0.2);
    border-bottom: 1px solid rgba(230, 126, 34, 0.2);
}

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

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

.nav-link:hover {
    color: #E67E22;
    background: rgba(230, 126, 34, 0.1);
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #E67E22;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid #E67E22;
    color: #E67E22;
    font-size: 20px;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #E67E22;
    color: #1A1005;
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #27AE60, #2ECC71, #27AE60);
    padding: 8px 0;
    overflow: hidden;
}

.notification-content {
    display: flex;
    gap: 50px;
    animation: notificationScroll 30s linear infinite;
    white-space: nowrap;
}

.notification-content span {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

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

.announcement-modal.active {
    display: flex;
}

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

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #2C1810, #1A1005);
    border: 2px solid #E67E22;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1;
    animation: fadeInUp 0.5s ease-out;
    box-shadow: 0 0 40px rgba(230, 126, 34, 0.3);
}

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

.announcement-close:hover {
    color: #F39C12;
    transform: rotate(90deg);
}

.announcement-header-icon {
    text-align: center;
    margin-bottom: 15px;
}

.announcement-header-icon i {
    font-size: 48px;
    color: #E67E22;
    animation: pulse 2s ease-in-out infinite;
}

.announcement-title {
    text-align: center;
    font-size: 24px;
    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: 12px;
    background: rgba(230, 126, 34, 0.05);
    border: 1px solid rgba(230, 126, 34, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #F5E6D3;
}

.announcement-item:hover {
    background: rgba(230, 126, 34, 0.15);
    border-color: #E67E22;
    transform: translateX(5px);
    color: #F5E6D3;
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}

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

.announcement-badge.new {
    background: #27AE60;
    color: #fff;
}

.announcement-badge.info {
    background: #3498DB;
    color: #fff;
}

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

.announcement-item i.fa-chevron-right {
    color: #E67E22;
    font-size: 12px;
}

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

.announcement-cta {
    display: inline-block;
    background: linear-gradient(135deg, #E67E22, #F39C12);
    color: #fff;
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
    color: #fff;
}

/* === SAFARI HERO SECTION === */
.safari-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    margin-bottom: 50px;
}

.sunset-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        #1A1005 0%,
        #3D1F00 15%,
        #8B4513 30%,
        #E67E22 50%,
        #F39C12 60%,
        #FFD700 70%,
        #F39C12 80%,
        #795548 90%,
        #2C1810 100%
    );
    animation: sunsetGlow 8s ease-in-out infinite;
    z-index: 0;
}

.savanna-grass {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.grass-layer-1 {
    height: 80px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 3px,
        #27AE60 3px,
        #27AE60 5px,
        transparent 5px,
        transparent 12px
    );
    animation: grassSway 4s ease-in-out infinite;
    opacity: 0.9;
    bottom: 0;
}

.grass-layer-2 {
    height: 60px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 5px,
        #229954 5px,
        #229954 7px,
        transparent 7px,
        transparent 15px
    );
    animation: grassSway 5s ease-in-out infinite reverse;
    opacity: 0.7;
    bottom: 10px;
}

.grass-layer-3 {
    height: 40px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 8px,
        #1E8449 8px,
        #1E8449 10px,
        transparent 10px,
        transparent 20px
    );
    animation: grassSway 3.5s ease-in-out infinite;
    opacity: 0.5;
    bottom: 20px;
}

.acacia-tree {
    position: absolute;
    z-index: 1;
    bottom: 40px;
}

.acacia-left {
    left: 5%;
    width: 120px;
    height: 180px;
    background:
        radial-gradient(ellipse 120px 50px at 50% 20%, rgba(39, 174, 96, 0.6) 0%, transparent 70%),
        linear-gradient(to bottom, transparent 40%, #795548 40%, #795548 100%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    animation: savannaBreeze 6s ease-in-out infinite;
}

.acacia-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 100px;
    background: #5D4037;
    bottom: 0;
    top: auto;
}

.acacia-left::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(39, 174, 96, 0.7) 0%, rgba(30, 132, 73, 0.3) 60%, transparent 80%);
    border-radius: 50%;
}

.acacia-right {
    right: 8%;
    width: 100px;
    height: 150px;
    background:
        radial-gradient(ellipse 100px 40px at 50% 25%, rgba(39, 174, 96, 0.5) 0%, transparent 70%),
        linear-gradient(to bottom, transparent 45%, #795548 45%, #795548 100%);
    animation: savannaBreeze 7s ease-in-out infinite;
    animation-delay: 1s;
}

.acacia-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 80px;
    background: #5D4037;
    bottom: 0;
    top: auto;
}

.acacia-right::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 50px;
    background: radial-gradient(ellipse, rgba(39, 174, 96, 0.6) 0%, rgba(30, 132, 73, 0.2) 60%, transparent 80%);
    border-radius: 50%;
}

.animal-silhouettes {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
    overflow: hidden;
}

.animal-elephant {
    position: absolute;
    bottom: 30px;
    left: 20%;
    width: 60px;
    height: 45px;
    background: rgba(26, 16, 5, 0.8);
    border-radius: 30px 30px 5px 5px;
    animation: animalStampede 25s linear infinite;
}

.animal-elephant::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 5px;
    width: 20px;
    height: 25px;
    background: rgba(26, 16, 5, 0.8);
    border-radius: 50% 50% 0 0;
}

.animal-giraffe {
    position: absolute;
    bottom: 30px;
    left: 40%;
    width: 25px;
    height: 70px;
    background: rgba(26, 16, 5, 0.7);
    border-radius: 10px 10px 5px 5px;
    animation: animalStampede 30s linear infinite;
    animation-delay: 3s;
}

.animal-giraffe::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 25px;
    background: rgba(26, 16, 5, 0.7);
    border-radius: 50%;
}

.animal-lion {
    position: absolute;
    bottom: 30px;
    left: 60%;
    width: 40px;
    height: 30px;
    background: rgba(26, 16, 5, 0.75);
    border-radius: 20px 25px 5px 5px;
    animation: animalStampede 20s linear infinite;
    animation-delay: 5s;
}

.animal-lion::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 25px;
    width: 25px;
    height: 25px;
    background: rgba(26, 16, 5, 0.75);
    border-radius: 50%;
}

.animal-zebra {
    position: absolute;
    bottom: 30px;
    left: 75%;
    width: 45px;
    height: 35px;
    background: rgba(26, 16, 5, 0.7);
    border-radius: 20px 15px 5px 5px;
    animation: animalStampede 22s linear infinite;
    animation-delay: 8s;
}

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

.hero-main-title {
    margin-bottom: 25px;
}

.hero-brand {
    display: block;
    font-family: 'Amatic SC', cursive;
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 30px rgba(230, 126, 34, 0.5);
    letter-spacing: 8px;
    text-transform: uppercase;
}

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

.hero-tagline {
    display: block;
    font-family: 'Amatic SC', cursive;
    font-size: 28px;
    color: #FFD700;
    letter-spacing: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 16px;
    color: rgba(245, 230, 211, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.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-family: 'Amatic SC', cursive;
    font-size: 36px;
    font-weight: 700;
    color: #E67E22;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(245, 230, 211, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-orange-primary {
    display: inline-block;
    background: linear-gradient(135deg, #E67E22, #F39C12);
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-orange-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
    color: #fff;
}

.btn-outline-orange {
    display: inline-block;
    background: transparent;
    color: #E67E22;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #E67E22;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-orange:hover {
    background: #E67E22;
    color: #1A1005;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

/* === SECTION COMMON === */
.section-title {
    text-align: center;
    font-size: 36px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title i {
    margin-right: 10px;
    font-size: 28px;
}

.section-subtitle {
    text-align: center;
    color: rgba(245, 230, 211, 0.6);
    font-size: 15px;
    margin-bottom: 40px;
}

/* === SAFARI GAMES (6 cards) === */
.safari-games {
    padding: 50px 0;
}

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

.safari-game-card {
    position: relative;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.9), rgba(26, 16, 5, 0.95));
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
    color: #F5E6D3;
}

.safari-game-card:hover {
    border-color: #E67E22;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.2);
    color: #F5E6D3;
}

.safari-game-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(230, 126, 34, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.safari-game-icon {
    margin-bottom: 15px;
}

.safari-game-icon i {
    font-size: 48px;
    color: #E67E22;
    filter: drop-shadow(0 0 10px rgba(230, 126, 34, 0.3));
}

.safari-game-rating {
    margin-bottom: 10px;
}

.safari-game-rating i {
    color: #F39C12;
    font-size: 14px;
    margin: 0 2px;
}

.safari-game-card h3 {
    font-family: 'Amatic SC', cursive;
    font-size: 28px;
    color: #E67E22;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.safari-game-card p {
    font-size: 14px;
    color: rgba(245, 230, 211, 0.7);
    margin-bottom: 15px;
    line-height: 1.6;
}

.safari-game-players {
    font-size: 12px;
    color: #27AE60;
    font-weight: 600;
}

.safari-game-players i {
    margin-right: 5px;
}

/* === SAFARI GRID (3x4) === */
.safari-grid {
    padding: 50px 0;
}

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

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

.safari-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.8), rgba(26, 16, 5, 0.9));
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 130px;
    text-align: center;
    color: #F5E6D3;
}

.safari-grid-node:hover {
    border-color: #E67E22;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.2);
    color: #E67E22;
}

.grid-node-icon i {
    font-size: 28px;
    color: #E67E22;
}

.grid-node-label {
    font-size: 14px;
    font-weight: 600;
    color: #F5E6D3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.safari-grid-node:hover .grid-node-label {
    color: #E67E22;
}

/* === SAFARI FEATURES === */
.safari-features {
    padding: 50px 0;
}

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

.safari-feature-card {
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.8), rgba(26, 16, 5, 0.9));
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.safari-feature-card:hover {
    border-color: #27AE60;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.15);
}

.safari-feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.safari-paw-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E67E22, #F39C12);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: binocularsZoom 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(230, 126, 34, 0.3);
}

.safari-paw-icon::before {
    content: '\f1b0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 24px;
    color: #fff;
}

.safari-feature-card h3 {
    font-family: 'Amatic SC', cursive;
    font-size: 26px;
    color: #27AE60;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.safari-feature-card p {
    font-size: 14px;
    color: rgba(245, 230, 211, 0.7);
    line-height: 1.7;
}

/* === SAFARI STATS === */
.safari-stats {
    position: relative;
    padding: 60px 0;
    margin: 30px 0;
    overflow: hidden;
}

.safari-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(26, 16, 5, 0.98));
    border-top: 2px solid rgba(230, 126, 34, 0.2);
    border-bottom: 2px solid rgba(230, 126, 34, 0.2);
    z-index: 0;
}

.grass-layer-stats {
    height: 50px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 4px,
        rgba(39, 174, 96, 0.3) 4px,
        rgba(39, 174, 96, 0.3) 6px,
        transparent 6px,
        transparent 14px
    );
    animation: grassSway 4s ease-in-out infinite;
    bottom: 0;
}

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

.safari-stat-card {
    text-align: center;
    padding: 30px 15px;
    background: rgba(26, 16, 5, 0.6);
    border: 1px solid rgba(230, 126, 34, 0.15);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.safari-stat-card:hover {
    border-color: #E67E22;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.15);
}

.stat-paw-decoration {
    margin-bottom: 10px;
}

.stat-paw-decoration i {
    font-size: 24px;
    color: rgba(230, 126, 34, 0.3);
}

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

.stat-number {
    font-family: 'Amatic SC', cursive;
    font-size: 48px;
    font-weight: 700;
    color: #E67E22;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(245, 230, 211, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === SAFARI PROMOTIONS === */
.safari-promos {
    padding: 50px 0;
}

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

.safari-promo-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(230, 126, 34, 0.2);
    transition: all 0.4s ease;
}

.safari-promo-card:hover {
    border-color: #E67E22;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.2);
}

.promo-safari-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.05), rgba(39, 174, 96, 0.05));
    z-index: 0;
}

.safari-promo-inner {
    position: relative;
    z-index: 1;
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(26, 16, 5, 0.98));
}

.promo-icon {
    margin-bottom: 15px;
}

.promo-icon i {
    font-size: 40px;
    color: #E67E22;
    animation: floatUp 3s ease-in-out infinite;
}

.safari-promo-inner h3 {
    font-family: 'Amatic SC', cursive;
    font-size: 24px;
    color: #E67E22;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.safari-promo-inner p {
    font-size: 14px;
    color: rgba(245, 230, 211, 0.7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: rgba(245, 230, 211, 0.6);
}

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

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

.promo-badge.new {
    background: #27AE60;
    color: #fff;
}

.promo-badge.vip {
    background: linear-gradient(135deg, #E67E22, #F39C12);
    color: #fff;
}

.btn-promo {
    display: inline-block;
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    color: #fff;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
    color: #fff;
}

/* === FOOTER CTA SECTION === */
.footer-cta-section {
    position: relative;
    padding: 80px 0;
    margin: 50px 0;
    overflow: hidden;
    text-align: center;
    border-radius: 20px;
}

.footer-cta-savanna {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3D1F00 0%, #1A1005 50%, #2C1810 100%);
    z-index: 0;
}

.grass-layer-cta {
    height: 50px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 5px,
        rgba(39, 174, 96, 0.4) 5px,
        rgba(39, 174, 96, 0.4) 7px,
        transparent 7px,
        transparent 18px
    );
    animation: grassSway 5s ease-in-out infinite;
    bottom: 0;
}

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

.cta-sunset-decoration {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.cta-sunset-outer {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #F39C12 0%, #E67E22 40%, transparent 70%);
    animation: sunsetGlow 4s ease-in-out infinite;
    position: relative;
}

.cta-sunset-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.footer-cta-inner h2 {
    font-family: 'Amatic SC', cursive;
    font-size: 42px;
    color: #E67E22;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-cta-inner > p {
    font-size: 16px;
    color: rgba(245, 230, 211, 0.8);
    margin-bottom: 25px;
    line-height: 1.7;
}

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

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

.cta-feature i {
    margin-right: 5px;
    color: #E67E22;
}

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

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

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

.article-card {
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.9), rgba(26, 16, 5, 0.95));
    border: 1px solid rgba(230, 126, 34, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #F5E6D3;
}

.article-card:hover {
    border-color: #E67E22;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.15);
    color: #F5E6D3;
}

.article-card-thumb {
    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.08);
}

.article-card-title {
    padding: 15px 15px 8px;
}

.article-card-title span,
.article-card-title a {
    font-family: 'Amatic SC', cursive;
    font-size: 22px;
    color: #F5E6D3;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
    display: block;
}

.article-card-title a:hover {
    color: #E67E22;
}

.article-card-meta {
    padding: 0 15px;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: rgba(245, 230, 211, 0.5);
}

.article-card-meta i {
    margin-right: 5px;
    color: #E67E22;
}

.article-card-excerpt {
    padding: 8px 15px 15px;
    font-size: 13px;
    color: rgba(245, 230, 211, 0.6);
    line-height: 1.6;
}

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

.article-card-more:hover {
    color: #F39C12;
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 250px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.orange-view-more {
    background: linear-gradient(135deg, #E67E22, #F39C12);
    color: #fff;
    border: none;
}

.orange-view-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
    color: #fff;
}

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

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

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

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 13px;
    color: rgba(245, 230, 211, 0.5);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #E67E22;
}

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

.breadcrumb span {
    color: rgba(245, 230, 211, 0.5);
}

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

.category-title {
    font-size: 36px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.category-title i {
    margin-right: 10px;
}

.category-desc {
    font-size: 15px;
    color: rgba(245, 230, 211, 0.6);
}

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

.provider-tab {
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid rgba(230, 126, 34, 0.3);
    background: transparent;
    color: #F5E6D3;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-tab:hover,
.provider-tab.active {
    background: #E67E22;
    color: #1A1005;
    border-color: #E67E22;
}

/* === ARTICLE GRID === */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: rgba(245, 230, 211, 0.5);
}

/* === PAGINATION === */
.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination .nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(230, 126, 34, 0.3);
    background: transparent;
    color: #F5E6D3;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.6), rgba(26, 16, 5, 0.8));
    border: 1px solid rgba(230, 126, 34, 0.15);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.article-title {
    font-size: 36px;
    color: #E67E22;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: rgba(245, 230, 211, 0.5);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(230, 126, 34, 0.15);
}

.article-meta i {
    margin-right: 5px;
    color: #E67E22;
}

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

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

.article-featured-img img {
    width: 100%;
    border-radius: 10px;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(245, 230, 211, 0.85);
}

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

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

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

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

.article-content blockquote {
    border-left: 4px solid #E67E22;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(230, 126, 34, 0.05);
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.article-content ul, .article-content ol {
    padding-left: 25px;
    margin-bottom: 15px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    border-top: 1px solid rgba(230, 126, 34, 0.15);
    margin-top: 20px;
}

.article-tags > i {
    color: #E67E22;
    margin-right: 5px;
}

.article-tags span {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(230, 126, 34, 0.1);
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: 20px;
    font-size: 12px;
    color: #E67E22;
}

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

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(230, 126, 34, 0.15);
}

.article-nav a {
    color: #E67E22;
    font-weight: 600;
}

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

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

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

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

.related-item {
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.8), rgba(26, 16, 5, 0.9));
    border: 1px solid rgba(230, 126, 34, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #F5E6D3;
}

.related-item:hover {
    border-color: #E67E22;
    transform: translateY(-3px);
    color: #F5E6D3;
}

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

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

.related-item-title {
    padding: 10px;
    font-size: 14px;
    color: #F5E6D3;
    line-height: 1.4;
}

.related-item:hover .related-item-title {
    color: #E67E22;
}

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.6), rgba(26, 16, 5, 0.8));
    border: 1px solid rgba(230, 126, 34, 0.15);
    border-radius: 15px;
    padding: 30px;
}

.page-title {
    font-size: 36px;
    color: #E67E22;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

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

.page-content {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(245, 230, 211, 0.85);
}

.page-content p { margin-bottom: 15px; }
.page-content h2, .page-content h3 { color: #E67E22; margin: 25px 0 15px; }

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

.error-safari-icon {
    margin-bottom: 20px;
}

.error-safari-icon i {
    font-size: 64px;
    color: #E67E22;
    animation: pulse 2s ease-in-out infinite;
}

.error-code {
    font-family: 'Amatic SC', cursive;
    font-size: 120px;
    color: #E67E22;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    line-height: 1;
    margin-bottom: 10px;
}

.error-title {
    font-size: 28px;
    color: #F5E6D3;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.error-desc {
    font-size: 16px;
    color: rgba(245, 230, 211, 0.6);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #2C1810 0%, #1A1005 100%);
    border-top: 3px solid #E67E22;
    padding: 50px 0 30px;
    margin-top: 50px;
}

.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;
}

.footer-brand-text {
    font-size: 14px;
    color: rgba(245, 230, 211, 0.6);
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border: 2px solid #E74C3C;
    border-radius: 50%;
    color: #E74C3C;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
}

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

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(230, 126, 34, 0.3);
    color: #E67E22;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #E67E22;
    color: #1A1005;
    border-color: #E67E22;
}

.footer-col h4 {
    font-family: 'Amatic SC', cursive;
    font-size: 24px;
    color: #E67E22;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

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

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

.footer-col ul li a {
    color: rgba(245, 230, 211, 0.6);
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(230, 126, 34, 0.15);
    border-bottom: 1px solid rgba(230, 126, 34, 0.15);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-family: 'Amatic SC', cursive;
    font-size: 22px;
    color: #E67E22;
    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;
}

.license-item i {
    font-size: 28px;
    color: #27AE60;
}

.license-item span {
    font-size: 12px;
    color: rgba(245, 230, 211, 0.5);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(245, 230, 211, 0.4);
}

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E67E22, #F39C12);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.sidebar-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.4);
    color: #fff;
}

.sidebar-btn-facebook {
    background: linear-gradient(135deg, #3B5998, #4267B2);
}

.sidebar-btn-telegram {
    background: linear-gradient(135deg, #0088CC, #229ED9);
}

.sidebar-label {
    display: none;
    position: absolute;
    right: 55px;
    background: rgba(26, 16, 5, 0.95);
    border: 1px solid #E67E22;
    color: #F5E6D3;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
}

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