/* ============================================
   DRAGONBET - Main Stylesheet
   Colors: Red #E63946, Gold #FFD700, Black #0D0D0D
   Fonts: Rajdhani (headings), Nunito (body)
   ============================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: #0D0D0D;
    color: #E0E0E0;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #FFD700;
}

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

a:hover {
    color: #E63946;
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

::selection {
    background: #E63946;
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #E63946;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFD700;
}

/* ============================================
   2. CONTAINER
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* ============================================
   3. BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #E63946, #c62836);
    color: #fff;
    border-color: #E63946;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFD700, #e6c200);
    color: #0D0D0D;
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.btn-outline:hover {
    background: #FFD700;
    color: #0D0D0D;
    transform: translateY(-2px);
}

.btn-outline-fire {
    background: transparent;
    color: #E63946;
    border-color: #E63946;
}

.btn-outline-fire:hover {
    background: #E63946;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

.btn-login {
    background: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-login:hover {
    background: #FFD700;
    color: #0D0D0D;
}

.btn-register {
    background: linear-gradient(135deg, #E63946, #c62836);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.9rem;
    border: 1px solid #E63946;
}

.btn-register:hover {
    background: linear-gradient(135deg, #FFD700, #e6c200);
    color: #0D0D0D;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* ============================================
   4. HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #0D0D0D 0%, #1a0a0a 100%);
    border-bottom: 2px solid #E63946;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.2);
}

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

.logo a {
    display: flex;
    align-items: center;
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   5. NAVIGATION
   ============================================ */
.main-nav {
    flex: 1;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-list li a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    color: #ccc;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-list li a:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.nav-list li a i {
    font-size: 0.8rem;
    color: #E63946;
}

/* ============================================
   6. NOTIFICATION BAR
   ============================================ */
.notification-bar {
    background: linear-gradient(90deg, #1a0000, #2d0a0a, #1a0000);
    border-top: 1px solid rgba(230, 57, 70, 0.3);
    padding: 8px 0;
    overflow: hidden;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-content > i {
    color: #E63946;
    font-size: 1.1rem;
    animation: dragonBreath 2s ease-in-out infinite;
}

.notification-text {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.notification-item {
    display: inline-block;
    padding: 0 40px;
    color: #FFD700;
    font-size: 0.85rem;
    animation: marquee 25s linear infinite;
}

.notification-clock {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #E63946;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

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

/* ============================================
   7. BREADCRUMB
   ============================================ */
.breadcrumb {
    background: rgba(230, 57, 70, 0.08);
    padding: 12px 0;
    border-bottom: 1px solid rgba(230, 57, 70, 0.15);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: #999;
}

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

.breadcrumb .separator {
    color: #555;
    font-size: 0.7rem;
}

.breadcrumb .current {
    color: #E63946;
    font-weight: 600;
}

/* ============================================
   8. ANNOUNCEMENT MODAL
   ============================================ */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    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(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #1a0a0a, #0D0D0D);
    border: 2px solid #E63946;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    padding: 40px;
    box-shadow: 0 0 60px rgba(230, 57, 70, 0.3), 0 0 120px rgba(255, 215, 0, 0.1);
    animation: modalSlideIn 0.5s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.announcement-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #999;
    font-size: 1.5rem;
    transition: color 0.3s;
    z-index: 1;
}

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

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

.announcement-header h2 {
    font-size: 2.2rem;
    color: #FFD700;
    margin-bottom: 8px;
}

.announcement-header h2 i {
    color: #E63946;
}

.announcement-subtitle {
    color: #ccc;
    font-size: 1rem;
}

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

.announcement-feature {
    text-align: center;
    padding: 20px 10px;
    background: rgba(230, 57, 70, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(230, 57, 70, 0.2);
}

.announcement-feature i {
    font-size: 2rem;
    color: #E63946;
    margin-bottom: 10px;
    display: block;
}

.announcement-feature h3 {
    font-size: 0.95rem;
    color: #FFD700;
    margin-bottom: 5px;
}

.announcement-feature p {
    font-size: 0.8rem;
    color: #aaa;
}

.btn-announcement {
    display: block;
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, #E63946, #c62836);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    border-radius: 8px;
    letter-spacing: 2px;
}

.btn-announcement:hover {
    background: linear-gradient(135deg, #FFD700, #e6c200);
    color: #0D0D0D;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* ============================================
   9. HERO SECTION - Dragon Flames
   ============================================ */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at bottom center, #2d0a0a 0%, #0D0D0D 70%);
}

.dragon-flame-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    pointer-events: none;
}

.flame {
    position: absolute;
    bottom: 0;
    width: 60px;
    height: 120px;
    border-radius: 50% 50% 20% 20%;
    animation: flameFlicker 1.5s ease-in-out infinite alternate;
}

.flame-left {
    left: 15%;
    background: radial-gradient(ellipse at bottom, #E63946 0%, #ff6b35 40%, transparent 70%);
    animation-delay: 0s;
}

.flame-center {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 160px;
    background: radial-gradient(ellipse at bottom, #FFD700 0%, #E63946 40%, transparent 70%);
    animation-delay: 0.3s;
}

.flame-right {
    right: 15%;
    background: radial-gradient(ellipse at bottom, #E63946 0%, #ff6b35 40%, transparent 70%);
    animation-delay: 0.6s;
}

.dragon-silhouette {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.06;
    pointer-events: none;
}

.dragon-icon {
    font-size: 300px;
    color: #E63946;
    filter: blur(2px);
}

.ember-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.ember {
    position: absolute;
    bottom: -10px;
    width: 6px;
    height: 6px;
    background: #E63946;
    border-radius: 50%;
    animation: emberRise linear infinite;
    opacity: 0;
    box-shadow: 0 0 6px #E63946, 0 0 12px rgba(255, 215, 0, 0.5);
}

.ember:nth-child(odd) {
    background: #FFD700;
    box-shadow: 0 0 6px #FFD700, 0 0 12px rgba(230, 57, 70, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title-line {
    display: block;
    color: #fff;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, #E63946, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: scaleShimmer 3s ease-in-out infinite;
}

.hero-subtitle {
    color: #ccc;
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-subtitle strong {
    color: #FFD700;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #E63946, #c62836);
    color: #fff;
    padding: 14px 35px;
    font-size: 1.1rem;
    border: 2px solid #E63946;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #FFD700, #e6c200);
    color: #0D0D0D;
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: #FFD700;
    padding: 14px 35px;
    font-size: 1.1rem;
    border: 2px solid #FFD700;
}

.btn-hero-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.hero-stats-mini {
    display: flex;
    gap: 30px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #E63946;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: #888;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner-img {
    border-radius: 16px;
    border: 2px solid rgba(230, 57, 70, 0.3);
    box-shadow: 0 20px 60px rgba(230, 57, 70, 0.2);
    width: 100%;
    max-width: 500px;
}

/* ============================================
   10. SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title {
    font-size: 2.2rem;
    color: #FFD700;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

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

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #E63946, #FFD700);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-desc {
    color: #999;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    color: #E63946;
    font-weight: 600;
    font-size: 0.95rem;
}

.section-header-link:hover {
    color: #FFD700;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   11. FEATURED GAMES (6 Cards) - Dragon Scale Border
   ============================================ */
.featured-games-section {
    background: linear-gradient(180deg, #0D0D0D, #120808, #0D0D0D);
}

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

.featured-game-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(230, 57, 70, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.featured-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #E63946, #FFD700) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.featured-game-card:hover::before {
    opacity: 1;
}

.featured-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.2), 0 0 20px rgba(255, 215, 0, 0.1);
}

.fgc-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.fgc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-game-card:hover .fgc-image img {
    transform: scale(1.08);
}

.fgc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.featured-game-card:hover .fgc-overlay {
    opacity: 1;
}

.btn-fgc {
    background: linear-gradient(135deg, #E63946, #c62836);
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-fgc:hover {
    background: linear-gradient(135deg, #FFD700, #e6c200);
    color: #0D0D0D;
}

.fgc-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #E63946;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: dragonBreath 2s ease-in-out infinite;
}

.fgc-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0a0a, #2d1515);
    color: #E63946;
    font-size: 3rem;
}

.fgc-info {
    padding: 18px;
}

.fgc-info h3 {
    font-size: 1.1rem;
    color: #FFD700;
    margin-bottom: 6px;
}

.fgc-info p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ============================================
   12. GAME GRID (3x4) - Dragon Claw Separators
   ============================================ */
.game-grid-section {
    background: #0D0D0D;
    position: relative;
}

.game-grid-3x4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(255, 215, 0, 0.1));
    border-radius: 12px;
    overflow: hidden;
    padding: 3px;
}

.grid-game-item {
    background: #151515;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.grid-game-item:hover {
    background: #1a0a0a;
    z-index: 2;
}

.ggi-image {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.ggi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-game-item:hover .ggi-image img {
    transform: scale(1.1);
}

.ggi-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0a0a, #2d1515);
    color: #E63946;
    font-size: 2.5rem;
}

.ggi-info {
    padding: 12px;
}

.ggi-info h4 {
    font-size: 0.9rem;
    color: #FFD700;
    margin-bottom: 4px;
}

.ggi-players {
    font-size: 0.75rem;
    color: #888;
}

.ggi-players i {
    color: #E63946;
    margin-right: 4px;
}

.ggi-link {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #E63946;
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.grid-game-item:hover .ggi-link {
    opacity: 1;
    transform: translateY(0);
}

.ggi-link:hover {
    background: #FFD700;
    color: #0D0D0D;
}

/* ============================================
   13. FEATURES SECTION - Fire Themed
   ============================================ */
.features-section {
    background: linear-gradient(180deg, #0D0D0D, #0f0505, #0D0D0D);
}

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

.feature-card {
    background: linear-gradient(135deg, #1a1a1a, #151515);
    border: 1px solid rgba(230, 57, 70, 0.15);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 57, 70, 0.4);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    transition: all 0.4s ease;
}

.feature-fire {
    background: rgba(230, 57, 70, 0.15);
    color: #E63946;
}

.feature-shield {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
}

.feature-bolt {
    background: rgba(230, 57, 70, 0.15);
    color: #E63946;
}

.feature-gift {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.3);
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #FFD700;
    margin-bottom: 12px;
}

.feature-card p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   14. STATS SECTION - Dragon Eye
   ============================================ */
.stats-section {
    position: relative;
    background: linear-gradient(135deg, #1a0a0a, #0D0D0D, #1a0a0a);
    border-top: 2px solid rgba(230, 57, 70, 0.2);
    border-bottom: 2px solid rgba(230, 57, 70, 0.2);
    overflow: hidden;
}

.stats-dragon-eye {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: dragonBreath 4s ease-in-out infinite;
}

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.stat-card:hover {
    border-color: #E63946;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.1);
    color: #E63946;
    font-size: 1.5rem;
}

.stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 5px;
    animation: scaleShimmer 3s ease-in-out infinite;
}

.stat-label {
    color: #999;
    font-size: 0.9rem;
}

/* ============================================
   15. PROMOTIONS SECTION - Fire Cards
   ============================================ */
.promotions-section {
    background: #0D0D0D;
}

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

.promo-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(230, 57, 70, 0.15);
    transition: all 0.4s ease;
}

.promo-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 57, 70, 0.5);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.2);
}

.promo-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.promo-card:hover .promo-image img {
    transform: scale(1.05);
}

.promo-fire-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #E63946, #FFD700, #E63946);
    animation: flameFlicker 2s ease-in-out infinite alternate;
}

.promo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d0a0a, #1a0a0a);
    color: #E63946;
    font-size: 3rem;
}

.promo-content {
    padding: 25px;
}

.promo-content h3 {
    font-size: 1.2rem;
    color: #FFD700;
    margin-bottom: 12px;
}

.promo-content h3 i {
    color: #E63946;
    margin-right: 8px;
}

.promo-content p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-promo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #E63946, #c62836);
    color: #fff;
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #FFD700, #e6c200);
    color: #0D0D0D;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* ============================================
   16. CTA SECTION - Dragon Call to Action
   ============================================ */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(ellipse at center, #2d0a0a, #0D0D0D);
    overflow: hidden;
}

.cta-flame-border-top,
.cta-flame-border-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #E63946, #FFD700, #E63946, transparent);
    animation: flameFlicker 2s ease-in-out infinite alternate;
}

.cta-flame-border-top {
    top: 0;
}

.cta-flame-border-bottom {
    bottom: 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.cta-dragon i {
    font-size: 4rem;
    color: #E63946;
    animation: dragonBreath 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(230, 57, 70, 0.5));
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.cta-content p {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

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

.btn-cta-primary {
    background: linear-gradient(135deg, #E63946, #c62836);
    color: #fff;
    padding: 16px 40px;
    font-size: 1.1rem;
    border: 2px solid #E63946;
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #FFD700, #e6c200);
    color: #0D0D0D;
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: #FFD700;
    padding: 16px 40px;
    font-size: 1.1rem;
    border: 2px solid #FFD700;
}

.btn-cta-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

/* ============================================
   17. NEWS SECTION
   ============================================ */
.news-section {
    background: linear-gradient(180deg, #0D0D0D, #0a0505);
}

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

.news-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(230, 57, 70, 0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.1);
}

.news-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-no-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0a0a, #2d1515);
    color: #E63946;
    font-size: 2.5rem;
}

.news-date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(13, 13, 13, 0.85);
    color: #FFD700;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.news-date i {
    margin-right: 4px;
    color: #E63946;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-content h3 a {
    color: #FFD700;
}

.news-content h3 a:hover {
    color: #E63946;
}

.news-content p {
    color: #888;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.news-read-more {
    color: #E63946;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-read-more:hover {
    color: #FFD700;
}

.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: #666;
}

.news-empty i {
    font-size: 3rem;
    color: #E63946;
    opacity: 0.3;
    margin-bottom: 15px;
    display: block;
}

/* ============================================
   18. FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, #0a0505, #050202);
    border-top: 2px solid #E63946;
}

.footer-top {
    padding: 60px 0 40px;
}

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

.footer-logo img {
    height: 45px;
    margin-bottom: 20px;
}

.footer-description {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.1);
    color: #E63946;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 57, 70, 0.2);
}

.footer-social a:hover {
    background: #E63946;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.footer-title {
    font-size: 1.1rem;
    color: #FFD700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(230, 57, 70, 0.2);
}

.footer-title i {
    color: #E63946;
    margin-right: 8px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #888;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 0.65rem;
    color: #E63946;
}

.footer-links a:hover {
    color: #FFD700;
    padding-left: 5px;
}

.footer-contact li {
    color: #888;
    font-size: 0.88rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: #E63946;
    width: 20px;
    text-align: center;
}

.footer-payment {
    margin-top: 20px;
}

.footer-payment h5 {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons i {
    font-size: 1.5rem;
    color: #666;
    transition: color 0.3s;
}

.payment-icons i:hover {
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid rgba(230, 57, 70, 0.15);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: #666;
    font-size: 0.85rem;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dmca-badge img {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.dmca-badge:hover img {
    opacity: 1;
}

.age-disclaimer {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-size: 0.8rem;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #E63946;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    font-family: 'Rajdhani', sans-serif;
    flex-shrink: 0;
}

/* ============================================
   19. BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #E63946, #c62836);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #FFD700, #e6c200);
    color: #0D0D0D;
    transform: translateY(-3px);
}

/* ============================================
   20. CONTENT LAYOUT (Blog Pages)
   ============================================ */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

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

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

.article-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(230, 57, 70, 0.1);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.1);
}

.article-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.article-no-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0a0a, #2d1515);
    color: #E63946;
    font-size: 2.5rem;
}

.article-date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(13, 13, 13, 0.85);
    color: #FFD700;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.article-date i {
    margin-right: 4px;
    color: #E63946;
}

.article-body {
    padding: 20px;
}

.article-meta {
    margin-bottom: 8px;
}

.article-cat {
    display: inline-block;
    background: rgba(230, 57, 70, 0.15);
    color: #E63946;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.article-cat:hover {
    background: #E63946;
    color: #fff;
}

.article-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-title a {
    color: #FFD700;
}

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

.article-excerpt {
    color: #888;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.article-read-more {
    color: #E63946;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.article-read-more:hover {
    color: #FFD700;
}

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

.pagination {
    display: flex;
    gap: 8px;
}

.page-item .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #1a1a1a;
    color: #ccc;
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-item .page-numbers:hover,
.page-item .page-numbers.current {
    background: #E63946;
    color: #fff;
    border-color: #E63946;
}

/* ============================================
   23. SINGLE POST
   ============================================ */
.single-post {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(230, 57, 70, 0.1);
}

.single-post-header {
    padding: 30px 30px 0;
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.single-cat {
    background: rgba(230, 57, 70, 0.15);
    color: #E63946;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.single-date, .single-views {
    color: #888;
    font-size: 0.85rem;
}

.single-date i, .single-views i {
    color: #E63946;
    margin-right: 4px;
}

.single-title {
    font-size: 2rem;
    color: #FFD700;
    line-height: 1.3;
}

.single-featured-image {
    margin: 20px 30px;
    border-radius: 8px;
    overflow: hidden;
}

.single-featured-image img {
    width: 100%;
}

.single-content {
    padding: 0 30px 30px;
}

.entry-content p {
    margin-bottom: 18px;
    color: #ccc;
    line-height: 1.8;
}

.entry-content h2 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #FFD700;
}

.entry-content h3 {
    font-size: 1.3rem;
    margin: 25px 0 12px;
    color: #FFD700;
}

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

.entry-content blockquote {
    border-left: 4px solid #E63946;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(230, 57, 70, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #ddd;
}

.entry-content ul, .entry-content ol {
    padding-left: 20px;
    margin-bottom: 18px;
}

.entry-content li {
    margin-bottom: 8px;
    color: #ccc;
    list-style: disc;
}

.entry-content a {
    color: #E63946;
    text-decoration: underline;
}

.entry-content a:hover {
    color: #FFD700;
}

.single-tags {
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tags-label {
    color: #888;
    font-size: 0.85rem;
}

.tag-item {
    display: inline-block;
    background: rgba(230, 57, 70, 0.1);
    color: #E63946;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    border: 1px solid rgba(230, 57, 70, 0.2);
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: #E63946;
    color: #fff;
}

.single-share {
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: #888;
    font-size: 0.85rem;
}

.share-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.share-btn.fb { background: #3b5998; }
.share-btn.tw { background: #1da1f2; }
.share-btn.tg { background: #0088cc; }

.share-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.author-box {
    margin: 0 30px 30px;
    padding: 25px;
    background: rgba(230, 57, 70, 0.05);
    border: 1px solid rgba(230, 57, 70, 0.15);
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.author-avatar img {
    border-radius: 50%;
    border: 2px solid #E63946;
}

.author-info h4 {
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: #888;
    font-size: 0.85rem;
}

.related-posts {
    padding: 0 30px 30px;
}

.related-title {
    font-size: 1.2rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.related-title i {
    color: #E63946;
    margin-right: 8px;
}

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

.related-card {
    background: #151515;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(230, 57, 70, 0.1);
    transition: all 0.3s ease;
}

.related-card:hover {
    border-color: rgba(230, 57, 70, 0.3);
}

.related-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.related-no-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a0a0a;
    color: #E63946;
    font-size: 1.5rem;
}

.related-card h4 {
    padding: 10px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.related-card h4 a {
    color: #FFD700;
}

.related-date {
    display: block;
    padding: 0 10px 10px;
    font-size: 0.75rem;
    color: #888;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    border-top: 1px solid rgba(230, 57, 70, 0.1);
    gap: 20px;
}

.nav-prev a, .nav-next a {
    color: #ccc;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-prev a:hover, .nav-next a:hover {
    color: #FFD700;
}

/* ============================================
   24. CATEGORY HEADER
   ============================================ */
.category-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(230, 57, 70, 0.2);
}

.category-title {
    font-size: 2rem;
    color: #FFD700;
}

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

.category-desc {
    color: #888;
    margin-top: 10px;
}

/* ============================================
   25. SEARCH
   ============================================ */
.search-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(230, 57, 70, 0.2);
}

.search-title {
    font-size: 1.8rem;
    color: #FFD700;
}

.search-title i {
    color: #E63946;
    margin-right: 10px;
}

.search-count {
    color: #888;
    margin-top: 8px;
}

.search-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 20px 0;
}

.search-field {
    flex: 1;
    padding: 12px 18px;
    background: #1a1a1a;
    color: #fff;
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 6px 0 0 6px;
    font-size: 0.95rem;
}

.search-field::placeholder {
    color: #666;
}

.search-submit {
    padding: 12px 20px;
    background: #E63946;
    color: #fff;
    border-radius: 0 6px 6px 0;
    font-size: 1rem;
    transition: background 0.3s;
}

.search-submit:hover {
    background: #FFD700;
    color: #0D0D0D;
}

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

.error-dragon i {
    font-size: 5rem;
    color: #E63946;
    opacity: 0.3;
    margin-bottom: 20px;
    display: block;
    animation: dragonBreath 3s ease-in-out infinite;
}

.error-code {
    font-size: 8rem;
    color: #FFD700;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.error-title {
    font-size: 2rem;
    color: #E63946;
    margin-bottom: 15px;
}

.error-desc {
    color: #888;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 30px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

/* ============================================
   27. EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 4rem;
    color: #E63946;
    opacity: 0.3;
    margin-bottom: 15px;
    display: block;
}

.empty-state h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.empty-state p {
    color: #888;
    margin-bottom: 20px;
}

/* ============================================
   28. SIDEBAR
   ============================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.widget {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(230, 57, 70, 0.1);
}

.widget-title {
    font-size: 1.1rem;
    color: #FFD700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(230, 57, 70, 0.2);
}

.widget-title i {
    color: #E63946;
    margin-right: 8px;
}

.widget-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.widget-list li:last-child {
    border-bottom: none;
}

.widget-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    color: #ccc;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.widget-list li a i {
    font-size: 0.65rem;
    color: #E63946;
}

.widget-list li a:hover {
    color: #FFD700;
    padding-left: 5px;
}

.cat-count {
    color: #666;
    font-size: 0.8rem;
    margin-left: auto;
}

.widget-recent-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.widget-recent-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.widget-recent-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.widget-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-no-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a0a0a;
    color: #E63946;
    font-size: 1.2rem;
    border-radius: 8px;
}

.widget-recent-info h4 {
    font-size: 0.88rem;
    line-height: 1.4;
    margin-bottom: 4px;
}

.widget-recent-info h4 a {
    color: #FFD700;
}

.widget-recent-info h4 a:hover {
    color: #E63946;
}

.recent-date {
    font-size: 0.75rem;
    color: #888;
}

.recent-date i {
    color: #E63946;
    margin-right: 4px;
}

.widget-cta-inner {
    text-align: center;
    padding: 10px;
}

.widget-cta-inner i {
    font-size: 2.5rem;
    color: #E63946;
    display: block;
    margin-bottom: 12px;
}

.widget-cta-inner h3 {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.widget-cta-inner p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-widget-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #E63946, #c62836);
    color: #fff;
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-widget-cta:hover {
    background: linear-gradient(135deg, #FFD700, #e6c200);
    color: #0D0D0D;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ============================================
   29. PAGE CONTENT
   ============================================ */
.page-content {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(230, 57, 70, 0.1);
}

.page-title {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(230, 57, 70, 0.2);
}

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

/* ============================================
   30. ANIMATIONS
   ============================================ */

/* Dragon Flame Flicker */
@keyframes flameFlicker {
    0% {
        transform: scaleY(1) scaleX(1);
        opacity: 0.7;
    }
    25% {
        transform: scaleY(1.2) scaleX(0.9);
        opacity: 0.9;
    }
    50% {
        transform: scaleY(0.8) scaleX(1.1);
        opacity: 0.6;
    }
    75% {
        transform: scaleY(1.1) scaleX(0.95);
        opacity: 0.85;
    }
    100% {
        transform: scaleY(0.9) scaleX(1.05);
        opacity: 0.75;
    }
}

/* Ember Particles Rising */
@keyframes emberRise {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-600px) translateX(var(--ember-drift, 30px)) scale(0);
        opacity: 0;
    }
}

/* Scale Shimmer - Gold shimmer effect */
@keyframes scaleShimmer {
    0%, 100% {
        background-position: 0% 50%;
        filter: brightness(1);
    }
    50% {
        background-position: 100% 50%;
        filter: brightness(1.3);
    }
}

/* Dragon Breath - Pulsating glow */
@keyframes dragonBreath {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Fade In Up for scroll animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In for elements */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scroll Animation Classes */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   31. UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-red { color: #E63946; }
.text-gold { color: #FFD700; }
.text-white { color: #fff; }
.text-muted { color: #888; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none { display: none; }

.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }
.gap-3 { gap: 30px; }

.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.w-100 { width: 100%; }

/* ============================================
   32. PROVIDER TABS
   ============================================ */
.provider-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.provider-tab {
    padding: 8px 20px;
    background: #1a1a1a;
    color: #ccc;
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-tab:hover,
.provider-tab.active {
    background: #E63946;
    color: #fff;
    border-color: #E63946;
}

/* ============================================
   33. LOADING & MISC
   ============================================ */
.loading-spinner {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.loading-spinner::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid rgba(230, 57, 70, 0.2);
    border-top-color: #E63946;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Selection highlight */
.highlight-text {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(255, 215, 0, 0.2));
    padding: 2px 6px;
    border-radius: 3px;
}

/* Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #E63946, #FFD700, #E63946, transparent);
    margin: 0;
}
