/* ============================================
   皇冠体育 - HJ Sports Main Stylesheet
   CSS Prefix: hj-
   Design: 金腰带冠军擂台风
   ============================================ */

/* --- Google Fonts Import (Local fallback) --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap');

/* --- CSS Variables --- */
:root {
    --hj-primary: #B8860B;
    --hj-secondary: #8B0000;
    --hj-accent: #FFD700;
    --hj-highlight: #FFFFFF;
    --hj-bg: #1A1A1A;
    --hj-bg-light: #222222;
    --hj-bg-card: #2A2A2A;
    --hj-text: #F5F5F5;
    --hj-text-muted: #A9A9A9;
    --hj-border-gold: rgba(184, 134, 11, 0.5);
    --hj-shadow-gold: 0 5px 25px rgba(255, 215, 0, 0.2);
    --hj-radius: 4px;
    --hj-font-title: 'Bebas Neue', 'Impact', sans-serif;
    --hj-font-body: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    --hj-transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--hj-font-body);
    background-color: var(--hj-bg);
    color: var(--hj-text);
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    color: var(--hj-accent);
    text-decoration: none;
    transition: var(--hj-transition);
}

a:hover {
    color: #FFF8DC;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--hj-font-title);
    color: var(--hj-text);
    line-height: 1.2;
    letter-spacing: 1px;
}

/* --- Container --- */
.hj-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Base --- */
.hj-section {
    padding: 80px 0;
    position: relative;
}

.hj-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--hj-accent);
    text-transform: uppercase;
}

.hj-section-subtitle {
    text-align: center;
    color: var(--hj-text-muted);
    font-size: 1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hj-gold-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--hj-primary), var(--hj-accent));
    margin: 15px auto 30px;
    border-radius: 2px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.hj-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--hj-primary);
    padding: 0 30px;
    transition: var(--hj-transition);
}

.hj-navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.hj-logo {
    font-family: var(--hj-font-title);
    font-size: 1.8rem;
    color: var(--hj-text);
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hj-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--hj-primary), var(--hj-accent));
    border-radius: var(--hj-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #1A1A1A;
    font-weight: 900;
}

.hj-logo span {
    color: var(--hj-accent);
}

.hj-nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.hj-nav-links li a {
    color: var(--hj-text-muted);
    font-size: 0.95rem;
    padding: 8px 14px;
    border-radius: var(--hj-radius);
    position: relative;
    font-weight: 500;
    transition: var(--hj-transition);
}

.hj-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--hj-accent);
    transition: var(--hj-transition);
}

.hj-nav-links li a:hover,
.hj-nav-links li a.hj-active {
    color: var(--hj-accent);
}

.hj-nav-links li a:hover::after,
.hj-nav-links li a.hj-active::after {
    width: 70%;
}

.hj-btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--hj-primary), var(--hj-accent));
    color: #1A1A1A;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: var(--hj-radius);
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--hj-transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hj-btn-cta:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    color: #1A1A1A;
}

/* Hamburger */
.hj-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hj-hamburger span {
    width: 28px;
    height: 2px;
    background: var(--hj-accent);
    transition: var(--hj-transition);
}

/* ============================================
   HERO BANNER
   ============================================ */
.hj-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0d0d0d;
}

.hj-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: brightness(0.4);
}

.hj-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(139, 0, 0, 0.3) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.hj-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 20px 60px;
    max-width: 900px;
}

.hj-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #333, #444);
    border: 1px solid var(--hj-primary);
    color: var(--hj-accent);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
    box-shadow: 0 2px 15px rgba(184, 134, 11, 0.3);
}

.hj-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hj-hero h1 .hj-text-gold {
    background: linear-gradient(135deg, var(--hj-primary), var(--hj-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hj-hero-desc {
    color: var(--hj-text-muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.hj-hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hj-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--hj-primary), var(--hj-accent));
    color: #1A1A1A;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--hj-radius);
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--hj-transition);
    letter-spacing: 1px;
}

.hj-btn-primary:hover {
    box-shadow: var(--hj-shadow-gold);
    transform: translateY(-2px);
    color: #1A1A1A;
}

.hj-btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--hj-accent);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--hj-radius);
    font-size: 1rem;
    border: 2px solid var(--hj-primary);
    cursor: pointer;
    transition: var(--hj-transition);
    letter-spacing: 1px;
}

.hj-btn-outline:hover {
    background: rgba(184, 134, 11, 0.15);
    box-shadow: var(--hj-shadow-gold);
    transform: translateY(-2px);
}

.hj-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.hj-stat-item {
    text-align: center;
}

.hj-stat-num {
    font-family: var(--hj-font-title);
    font-size: 2.8rem;
    color: var(--hj-accent);
    line-height: 1;
}

.hj-stat-label {
    color: var(--hj-text-muted);
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Dust particles */
.hj-dust-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hj-dust-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: hj-float 8s infinite ease-in-out;
}

@keyframes hj-float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    25% { opacity: 1; }
    50% { transform: translateY(-200px) translateX(50px); opacity: 0.5; }
    75% { opacity: 0.3; }
}

/* ============================================
   EVENTS / HEADLINE REPORTS
   ============================================ */
.hj-events {
    background: var(--hj-bg);
}

.hj-events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.hj-event-card {
    background: var(--hj-bg-card);
    border-radius: var(--hj-radius);
    overflow: hidden;
    border: 1px solid rgba(184, 134, 11, 0.2);
    transition: var(--hj-transition);
    position: relative;
}

.hj-event-card:hover {
    border-color: var(--hj-accent);
    box-shadow: var(--hj-shadow-gold);
    transform: translateY(-3px);
}

.hj-event-card-featured {
    grid-row: span 2;
}

.hj-event-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.hj-event-card-featured .hj-event-card-img {
    height: 100%;
    min-height: 400px;
}

.hj-event-card-body {
    padding: 20px;
}

.hj-event-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hj-tag-wbc { background: #228B22; color: #fff; }
.hj-tag-wba { background: #8B0000; color: #fff; }
.hj-tag-ibf { background: #4169E1; color: #fff; }
.hj-tag-wbo { background: #FF8C00; color: #fff; }
.hj-tag-ufc { background: #C41E3A; color: #fff; }
.hj-tag-one { background: #B8860B; color: #fff; }

.hj-event-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    transition: var(--hj-transition);
}

.hj-event-card:hover h3 {
    color: var(--hj-accent);
}

.hj-event-result {
    color: var(--hj-accent);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.hj-event-meta {
    color: var(--hj-text-muted);
    font-size: 0.85rem;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hj-event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============================================
   VIDEO MODULE
   ============================================ */
.hj-video-section {
    background: var(--hj-bg-light);
    position: relative;
}

.hj-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(184, 134, 11, 0.03) 2px,
        rgba(184, 134, 11, 0.03) 4px
    );
    pointer-events: none;
}

.hj-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.hj-video-card {
    background: var(--hj-bg-card);
    border-radius: var(--hj-radius);
    overflow: hidden;
    border: 1px solid rgba(184, 134, 11, 0.2);
    transition: var(--hj-transition);
}

.hj-video-card:hover {
    border-color: var(--hj-accent);
    box-shadow: var(--hj-shadow-gold);
}

.hj-video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
}

.hj-video-wrapper video {
    width: 100%;
    display: block;
}

.hj-video-duration {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--hj-accent);
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.hj-video-card-body {
    padding: 18px;
}

.hj-video-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.hj-video-card p {
    color: var(--hj-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   RANKING TABLE
   ============================================ */
.hj-ranking {
    background: var(--hj-bg);
}

.hj-ranking-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

.hj-podium {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    padding: 30px 0;
}

.hj-podium-item {
    text-align: center;
    position: relative;
}

.hj-podium-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--hj-bg-card);
    border: 3px solid var(--hj-accent);
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hj-font-title);
    font-size: 1.5rem;
    color: var(--hj-accent);
}

.hj-podium-bar {
    width: 80px;
    border-radius: var(--hj-radius) var(--hj-radius) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hj-font-title);
    font-size: 1.5rem;
    color: #1A1A1A;
    font-weight: 900;
}

.hj-podium-1 .hj-podium-bar { height: 120px; background: linear-gradient(180deg, #FFD700, #B8860B); }
.hj-podium-2 .hj-podium-bar { height: 90px; background: linear-gradient(180deg, #E0E0E0, #C0C0C0); }
.hj-podium-3 .hj-podium-bar { height: 70px; background: linear-gradient(180deg, #CD9B5A, #CD7F32); }

.hj-podium-name {
    font-size: 0.85rem;
    margin-top: 8px;
    color: var(--hj-text);
}

.hj-ranking-table {
    background: var(--hj-bg-card);
    border-radius: var(--hj-radius);
    border: 1px solid rgba(184, 134, 11, 0.2);
    overflow: hidden;
}

.hj-ranking-table table {
    width: 100%;
    border-collapse: collapse;
}

.hj-ranking-table th {
    background: rgba(184, 134, 11, 0.15);
    color: var(--hj-accent);
    padding: 14px 18px;
    text-align: left;
    font-family: var(--hj-font-title);
    font-size: 0.95rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--hj-primary);
}

.hj-ranking-table td {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.hj-ranking-table tr:hover {
    background: rgba(184, 134, 11, 0.08);
}

.hj-rank-gold { color: #FFD700; font-weight: 700; }
.hj-rank-silver { color: #C0C0C0; font-weight: 700; }
.hj-rank-bronze { color: #CD7F32; font-weight: 700; }

.hj-trend-up { color: #22C55E; }
.hj-trend-down { color: #EF4444; }
.hj-trend-same { color: var(--hj-text-muted); }

/* ============================================
   ANALYSIS / ARTICLES
   ============================================ */
.hj-analysis {
    background: var(--hj-bg-light);
}

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

.hj-article-card {
    background: var(--hj-bg-card);
    border-radius: var(--hj-radius);
    overflow: hidden;
    border: 1px solid rgba(184, 134, 11, 0.15);
    transition: var(--hj-transition);
}

.hj-article-card:hover {
    border-color: var(--hj-accent);
    box-shadow: var(--hj-shadow-gold);
    transform: translateY(-3px);
}

.hj-article-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.hj-article-card-body {
    padding: 18px;
}

.hj-article-tag {
    display: inline-block;
    background: rgba(184, 134, 11, 0.2);
    color: var(--hj-accent);
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hj-article-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: var(--hj-transition);
}

.hj-article-card:hover h3 {
    color: var(--hj-accent);
}

.hj-article-card p {
    color: var(--hj-text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hj-article-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hj-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--hj-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #fff;
    font-weight: 700;
}

.hj-author-info {
    font-size: 0.8rem;
}

.hj-author-info .hj-author-name {
    color: var(--hj-text);
    font-weight: 500;
}

.hj-author-info .hj-author-date {
    color: var(--hj-text-muted);
}

/* ============================================
   ROOKIE CAMP / NEW STAR
   ============================================ */
.hj-rookie {
    background: var(--hj-bg);
}

.hj-rookie-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hj-rookie-story h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--hj-accent);
}

.hj-rookie-story p {
    color: var(--hj-text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.hj-radar-chart {
    background: var(--hj-bg-card);
    border-radius: var(--hj-radius);
    border: 1px solid rgba(184, 134, 11, 0.2);
    padding: 30px;
    text-align: center;
}

.hj-radar-chart canvas {
    max-width: 100%;
}

/* ============================================
   PREDICTION MODULE
   ============================================ */
.hj-prediction {
    background: var(--hj-bg-light);
    position: relative;
    overflow: hidden;
}

.hj-prediction-card {
    background: var(--hj-bg-card);
    border-radius: var(--hj-radius);
    border: 2px solid var(--hj-primary);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.hj-vs-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.hj-fighter-card {
    text-align: center;
}

.hj-fighter-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
    border: 3px solid var(--hj-primary);
}

.hj-fighter-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.hj-fighter-card .hj-fighter-record {
    color: var(--hj-text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.hj-fighter-card .hj-fighter-country {
    color: var(--hj-accent);
    font-size: 0.85rem;
}

.hj-vs-center {
    text-align: center;
}

.hj-vs-badge {
    font-family: var(--hj-font-title);
    font-size: 3rem;
    color: var(--hj-accent);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hj-odds {
    color: var(--hj-text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

.hj-prediction-bar {
    margin-top: 30px;
    background: rgba(139, 0, 0, 0.3);
    border-radius: 50px;
    height: 40px;
    overflow: hidden;
    display: flex;
    position: relative;
}

.hj-prediction-bar-a {
    background: linear-gradient(90deg, var(--hj-secondary), #B22222);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    transition: width 0.5s ease;
}

.hj-prediction-bar-b {
    background: linear-gradient(90deg, var(--hj-primary), var(--hj-accent));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
    font-weight: 700;
    font-size: 0.9rem;
    transition: width 0.5s ease;
}

.hj-prediction-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
}

.hj-predict-btn {
    padding: 12px 30px;
    border-radius: var(--hj-radius);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--hj-transition);
    border: none;
}

.hj-predict-btn-a {
    background: var(--hj-secondary);
    color: #fff;
}

.hj-predict-btn-b {
    background: linear-gradient(135deg, var(--hj-primary), var(--hj-accent));
    color: #1A1A1A;
}

.hj-predict-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--hj-shadow-gold);
}

/* ============================================
   INTERVIEW MODULE
   ============================================ */
.hj-interview {
    background: var(--hj-bg);
}

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

.hj-interview-card {
    background: var(--hj-bg-card);
    border-radius: var(--hj-radius);
    overflow: hidden;
    border: 1px solid rgba(184, 134, 11, 0.15);
    transition: var(--hj-transition);
}

.hj-interview-card:hover {
    border-color: var(--hj-accent);
    box-shadow: var(--hj-shadow-gold);
    transform: translateY(-3px);
}

.hj-interview-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.hj-interview-body {
    padding: 20px;
}

.hj-interview-quote {
    font-style: italic;
    color: var(--hj-accent);
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.hj-interview-body p {
    color: var(--hj-text-muted);
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

/* ============================================
   GALLERY
   ============================================ */
.hj-gallery {
    background: var(--hj-bg-light);
}

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

.hj-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--hj-radius);
    cursor: pointer;
}

.hj-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--hj-transition);
}

.hj-gallery-item:nth-child(1),
.hj-gallery-item:nth-child(4) {
    grid-row: span 2;
}

.hj-gallery-item:nth-child(1) img,
.hj-gallery-item:nth-child(4) img {
    height: 515px;
}

.hj-gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.hj-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: var(--hj-transition);
}

.hj-gallery-item:hover .hj-gallery-overlay {
    opacity: 1;
}

.hj-gallery-overlay h4 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 3px;
}

.hj-gallery-overlay span {
    font-size: 0.8rem;
    color: var(--hj-text-muted);
}

/* ============================================
   PARTNERS & HONORS
   ============================================ */
.hj-partners {
    background: var(--hj-bg);
    border-top: 1px solid rgba(184, 134, 11, 0.2);
}

.hj-partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hj-partner-logo {
    font-family: var(--hj-font-title);
    font-size: 1.5rem;
    color: var(--hj-text-muted);
    opacity: 0.6;
    transition: var(--hj-transition);
    letter-spacing: 2px;
}

.hj-partner-logo:hover {
    opacity: 1;
    color: var(--hj-accent);
}

.hj-honors {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hj-honor-badge {
    text-align: center;
    padding: 20px 30px;
    background: var(--hj-bg-card);
    border-radius: var(--hj-radius);
    border: 1px solid rgba(184, 134, 11, 0.3);
}

.hj-honor-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.hj-honor-badge h4 {
    font-size: 0.9rem;
    color: var(--hj-accent);
    margin-bottom: 5px;
}

.hj-honor-badge p {
    font-size: 0.8rem;
    color: var(--hj-text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.hj-footer {
    background: #111111;
    border-top: 2px solid var(--hj-primary);
    padding: 60px 0 0;
}

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

.hj-footer-col h4 {
    font-size: 1.1rem;
    color: var(--hj-accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hj-footer-brand p {
    color: var(--hj-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.hj-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--hj-bg-card);
    border: 1px solid rgba(184, 134, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hj-text-muted);
    font-size: 0.85rem;
    transition: var(--hj-transition);
}

.hj-social-link:hover {
    background: var(--hj-primary);
    color: #fff;
    border-color: var(--hj-accent);
}

.hj-footer-links {
    list-style: none;
}

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

.hj-footer-links a {
    color: var(--hj-text-muted);
    font-size: 0.9rem;
    transition: var(--hj-transition);
}

.hj-footer-links a:hover {
    color: var(--hj-accent);
    padding-left: 5px;
}

.hj-footer-contact p {
    color: var(--hj-text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

.hj-footer-seo {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hj-footer-seo p {
    color: var(--hj-text-muted);
    font-size: 0.75rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.7;
}

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

.hj-footer-bottom p {
    color: var(--hj-text-muted);
    font-size: 0.8rem;
    line-height: 1.8;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.hj-breadcrumb {
    padding: 100px 0 20px;
    background: var(--hj-bg);
}

.hj-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 0.85rem;
}

.hj-breadcrumb-list li {
    color: var(--hj-text-muted);
}

.hj-breadcrumb-list li a {
    color: var(--hj-text-muted);
}

.hj-breadcrumb-list li a:hover {
    color: var(--hj-accent);
}

.hj-breadcrumb-list li.hj-active {
    color: var(--hj-accent);
}

/* ============================================
   INNER PAGE HERO
   ============================================ */
.hj-page-hero {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(26, 26, 26, 0.95));
    text-align: center;
    overflow: hidden;
}

.hj-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hj-hero-ring.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hj-page-hero-content {
    position: relative;
    z-index: 1;
}

.hj-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hj-page-hero p {
    color: var(--hj-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ============================================
   INNER PAGE CONTENT
   ============================================ */
.hj-content {
    padding: 50px 0 80px;
}

.hj-content-body {
    max-width: 900px;
    margin: 0 auto;
}

.hj-content-body h2 {
    font-size: 1.8rem;
    color: var(--hj-accent);
    margin: 40px 0 15px;
}

.hj-content-body h3 {
    font-size: 1.4rem;
    color: var(--hj-text);
    margin: 30px 0 12px;
}

.hj-content-body p {
    color: var(--hj-text-muted);
    margin-bottom: 18px;
    line-height: 1.9;
    font-size: 1rem;
}

.hj-content-body blockquote {
    border-left: 4px solid var(--hj-accent);
    padding: 15px 20px;
    margin: 25px 0;
    background: rgba(184, 134, 11, 0.08);
    border-radius: 0 var(--hj-radius) var(--hj-radius) 0;
    color: var(--hj-text);
    font-style: italic;
}

.hj-content-img {
    width: 100%;
    border-radius: var(--hj-radius);
    margin: 25px 0;
    border: 1px solid rgba(184, 134, 11, 0.2);
}

.hj-inner-links {
    margin-top: 40px;
    padding: 25px;
    background: var(--hj-bg-card);
    border-radius: var(--hj-radius);
    border: 1px solid rgba(184, 134, 11, 0.2);
}

.hj-inner-links h4 {
    color: var(--hj-accent);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hj-inner-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.hj-inner-links a {
    color: var(--hj-text-muted);
    font-size: 0.9rem;
    padding: 5px 0;
    display: block;
}

.hj-inner-links a:hover {
    color: var(--hj-accent);
}

/* ============================================
   FAQ MODULE
   ============================================ */
.hj-faq {
    margin-top: 50px;
}

.hj-faq-item {
    background: var(--hj-bg-card);
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: var(--hj-radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.hj-faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--hj-text);
    transition: var(--hj-transition);
}

.hj-faq-question:hover {
    color: var(--hj-accent);
}

.hj-faq-question .hj-faq-icon {
    color: var(--hj-accent);
    font-size: 1.2rem;
    transition: var(--hj-transition);
}

.hj-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--hj-text-muted);
    line-height: 1.8;
}

.hj-faq-item.hj-active .hj-faq-answer {
    max-height: 500px;
    padding: 0 20px 18px;
}

.hj-faq-item.hj-active .hj-faq-icon {
    transform: rotate(45deg);
}

/* ============================================
   APP DOWNLOAD PAGE
   ============================================ */
.hj-app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hj-app-mockup img {
    max-width: 350px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.hj-app-info h2 {
    font-size: 2.5rem;
    color: var(--hj-accent);
    margin-bottom: 15px;
}

.hj-app-info p {
    color: var(--hj-text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.hj-app-features {
    list-style: none;
    margin-bottom: 30px;
}

.hj-app-features li {
    padding: 10px 0;
    color: var(--hj-text);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hj-app-features li::before {
    content: '✦';
    color: var(--hj-accent);
    font-size: 1.2rem;
}

.hj-download-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hj-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--hj-radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--hj-transition);
    border: 2px solid var(--hj-primary);
    color: var(--hj-text);
    background: transparent;
}

.hj-download-btn:hover {
    background: linear-gradient(135deg, var(--hj-primary), var(--hj-accent));
    color: #1A1A1A;
    border-color: var(--hj-accent);
}

/* ============================================
   PREDICTION PAGE CARDS
   ============================================ */
.hj-match-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.hj-match-card {
    background: var(--hj-bg-card);
    border-radius: var(--hj-radius);
    border: 1px solid rgba(184, 134, 11, 0.2);
    padding: 25px;
    transition: var(--hj-transition);
}

.hj-match-card:hover {
    border-color: var(--hj-accent);
    box-shadow: var(--hj-shadow-gold);
}

.hj-match-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--hj-accent);
}

.hj-match-card .hj-match-versus {
    font-size: 1rem;
    color: var(--hj-text);
    margin-bottom: 8px;
}

.hj-match-card .hj-match-info {
    color: var(--hj-text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

/* ============================================
   MODAL
   ============================================ */
.hj-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.hj-modal-overlay.hj-active {
    display: flex;
}

.hj-modal {
    background: var(--hj-bg-card);
    border: 2px solid var(--hj-primary);
    border-radius: var(--hj-radius);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.hj-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--hj-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--hj-transition);
}

.hj-modal-close:hover {
    color: var(--hj-accent);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.hj-text-gold {
    color: var(--hj-accent);
}

.hj-text-muted {
    color: var(--hj-text-muted);
}

.hj-text-center {
    text-align: center;
}

.hj-mb-20 {
    margin-bottom: 20px;
}

.hj-mb-40 {
    margin-bottom: 40px;
}

.hj-leather-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23B8860B' fill-opacity='0.03'%3E%3Cpath d='M0 0h20v20H0zM20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
}

.hj-metal-border {
    border: 1px solid;
    border-image: linear-gradient(135deg, var(--hj-primary), var(--hj-accent), var(--hj-primary)) 1;
}

.hj-gold-glow {
    box-shadow: var(--hj-shadow-gold);
}

.hj-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hj-fade-in.hj-visible {
    opacity: 1;
    transform: translateY(0);
}
