/* ========================================
   ??????????????? - Portal Style
   ======================================== */

/* CSS ???????? */
:root {
    --primary: #00d4aa;
    --primary-dark: #00b894;
    --secondary: #ff6b6b;
    --accent: #ffd93d;
    --dark: #1a1a2e;
    --dark-light: #16213e;
    --gray-dark: #2d3436;
    --gray: #636e72;
    --gray-light: #b2bec3;
    --light: #dfe6e9;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-hot: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 30px rgba(0,212,170,0.3);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ???????? */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.portal-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: var(--light);
    color: var(--gray-dark);
    line-height: 1.6;
}

.portal-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ========================================
   ????????? - ????????? + ????????
   ======================================== */
.hero-fullscreen-zone {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    overflow: hidden;
}

/* ????????? */
.fullscreen-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#fullscreen-main-slider {
    width: 100%;
    height: 100%;
}

#fullscreen-main-slider .swiper-container {
    width: 100%;
    height: 100%;
}

.fullscreen-slide {
    position: relative;
    overflow: hidden;
}

.fullscreen-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}

#fullscreen-main-slider .swiper-slide-active .fullscreen-bg {
    transform: scale(1);
}

.fullscreen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        rgba(15,15,35,0.95) 0%, 
        rgba(15,15,35,0.7) 40%,
        rgba(15,15,35,0.4) 60%,
        rgba(15,15,35,0.2) 100%);
}

.fullscreen-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 60px 100px;
    z-index: 10;
}

.content-wrapper {
    max-width: 800px;
}

.fullscreen-category {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.fullscreen-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.fullscreen-summary {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.fullscreen-meta {
    display: flex;
    align-items: center;
    gap: 25px;
}

.meta-date {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.read-more-btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,212,170,0.4);
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,212,170,0.5);
    text-decoration: none;
    color: var(--white);
}

/* ??????? */
#fullscreen-main-slider .swiper-pagination {
    bottom: 40px;
    left: 60px;
    width: auto;
}

#fullscreen-main-slider .swiper-pagination-bullet {
    width: 50px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    opacity: 1;
    margin: 0 8px 0 0;
    border-radius: 2px;
    transition: var(--transition);
}

#fullscreen-main-slider .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 80px;
}

.fullscreen-prev,
.fullscreen-next {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.fullscreen-prev:hover,
.fullscreen-next:hover {
    background: var(--primary);
}

.fullscreen-prev:after,
.fullscreen-next:after {
    font-size: 20px;
}

/* ?????????? */
.overlay-sidebar {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    width: 400px;
    z-index: 20;
}

.overlay-sidebar-inner {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
}

.overlay-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0,0,0,0.08);
}

.live-pulse {
    width: 12px;
    height: 12px;
    background: var(--gradient-hot);
    border-radius: 50%;
    position: relative;
    animation: livePulse 1.5s infinite;
}

.live-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-hot);
    border-radius: 50%;
    animation: livePulseRing 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes livePulseRing {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.overlay-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.overlay-hot-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.overlay-hot-item {
    background: rgba(0,0,0,0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.overlay-hot-item:hover,
.overlay-hot-item.active {
    background: var(--white);
    border-color: var(--primary);
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.overlay-hot-item.active .overlay-rank {
    background: var(--gradient-hot) !important;
    color: var(--white) !important;
}

.overlay-hot-item a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    color: inherit;
    text-decoration: none;
}

.overlay-rank {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.overlay-hot-item:nth-child(1) .overlay-rank { background: linear-gradient(135deg, #ffd700, #ffaa00); color: var(--dark); }
.overlay-hot-item:nth-child(2) .overlay-rank { background: linear-gradient(135deg, #c0c0c0, #a0a0a0); color: var(--dark); }
.overlay-hot-item:nth-child(3) .overlay-rank { background: linear-gradient(135deg, #cd7f32, #b87333); color: var(--white); }

.overlay-item-body {
    flex: 1;
    min-width: 0;
}

.overlay-item-body h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.item-summary {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.item-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-category {
    padding: 3px 10px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
}

.item-time {
    font-size: 11px;
    color: var(--gray);
}

.view-more-hot {
    display: block;
    text-align: center;
    padding: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.view-more-hot:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,212,170,0.4);
    text-decoration: none;
    color: var(--white);
}

/* ??????? */
@media (max-width: 1400px) {
    .overlay-sidebar {
        right: 30px;
        width: 350px;
    }
    
    .fullscreen-content {
        padding: 60px 40px 80px;
    }
    
    .fullscreen-title {
        font-size: 36px;
    }
}

@media (max-width: 1200px) {
    .hero-fullscreen-zone {
        height: auto;
        min-height: auto;
        max-height: none;
    }
    
    .fullscreen-slider {
        position: relative;
        height: 500px;
    }
    
    .fullscreen-overlay {
        background: linear-gradient(to top, 
            rgba(15,15,35,0.95) 0%, 
            rgba(15,15,35,0.5) 50%,
            rgba(15,15,35,0.3) 100%);
    }
    
    .fullscreen-content {
        padding: 40px 30px 60px;
    }
    
    .fullscreen-title {
        font-size: 28px;
    }
    
    .fullscreen-summary {
        display: none;
    }
    
    .overlay-sidebar {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        padding: 20px;
    }
    
    .overlay-sidebar-inner {
        border-radius: 15px;
    }
}

@media (max-width: 768px) {
    .fullscreen-slider {
        height: 400px;
    }
    
    .fullscreen-title {
        font-size: 22px;
    }
    
    .fullscreen-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .overlay-hot-list {
        gap: 10px;
    }
    
    .overlay-hot-item a {
        padding: 12px;
    }
    
    .item-summary {
        display: none;
    }
}

/* ========================================
   ???????? - Live Bar
   ======================================== */
.live-bar {
    background: var(--white);
    padding: 25px 0;
    border-bottom: 1px solid var(--light);
}

.live-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-hot);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.live-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.live-matches {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.live-match-item {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    border: 1px solid var(--light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.live-match-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.live-match-item:hover::before {
    transform: scaleX(1);
}

.live-match-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.match-league {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.match-teams-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 12px;
}

.team-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.vs-badge {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.match-time-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--gray);
}

.match-link {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.match-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
}

/* ?????????????? */
.live-bar-fullscreen {
    width: 100%;
    padding: 25px 0;
}

.live-header-fullscreen {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 0 30px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.live-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.live-marquee {
    display: flex;
    width: fit-content;
    animation: marquee-scroll 30s linear infinite;
}

.live-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.live-marquee-content {
    display: flex;
    gap: 20px;
    padding: 0 10px;
    flex-shrink: 0;
}

.live-marquee-content .live-match-item {
    flex-shrink: 0;
    width: 280px;
}

/* ========================================
   ???????????? - ?????????
   ======================================== */
.section-football-new {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding-bottom: 60px;
}

/* ?????????????? */
.league-bar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 20px 0;
    margin-bottom: 40px;
}

.league-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.league-scroll::-webkit-scrollbar {
    display: none;
}

.league-tab {
    flex-shrink: 0;
    text-decoration: none;
}

.league-badge {
    display: block;
    padding: 12px 28px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.league-tab:hover .league-badge,
.league-tab.active .league-badge {
    background: #ffffff;
    border-color: #ffffff;
    color: #1e3c72;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.league-tab.more .league-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-color: transparent;
    color: #ffffff;
}

/* ??????? */
.football-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e8ecf1;
}

.title-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.football-icon-big {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,212,170,0.3);
}

.football-icon-big::before {
    content: '';
    width: 35px;
    height: 35px;
    background: #ffffff;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: inset 0 0 0 3px #00d4aa;
}

.title-text-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.title-text-box .subtitle {
    font-size: 14px;
    color: #636e72;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.view-all-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,212,170,0.3);
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,212,170,0.4);
    text-decoration: none;
    color: #ffffff;
}

/* ???????????? - ???????? */
.football-content-new {
    display: grid;
    grid-template-columns: 1.4fr 1fr 320px;
    gap: 30px;
}

/* ??????????? */
.football-main-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ??????? */
.football-hero {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.hero-article {
    display: block;
    position: relative;
    aspect-ratio: 16/10;
    text-decoration: none;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-article:hover .hero-image-wrapper img {
    transform: scale(1.05);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, 
        rgba(0,0,0,0.9) 0%, 
        rgba(0,0,0,0.5) 40%,
        transparent 70%);
}

.hero-article-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    color: #ffffff;
}

.article-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.meta-category {
    padding: 3px 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
}

/* ???????????? */
.football-sub-news {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.sub-news-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8ecf1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sub-news-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-color: #00d4aa;
    text-decoration: none;
}

.sub-news-image {
    width: 90px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.sub-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-news-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sub-news-content h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sub-news-time {
    font-size: 11px;
    color: #636e72;
}

/* ???????????? */
.football-news-list-new {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e8ecf1;
    overflow: hidden;
}

.list-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #e8ecf1;
}

.list-header-new h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

.list-filter {
    display: flex;
    gap: 8px;
}

.filter-btn {
    padding: 6px 14px;
    background: transparent;
    border: 1px solid #e8ecf1;
    border-radius: 20px;
    color: #636e72;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #00d4aa, #00b894);
    border-color: transparent;
    color: #ffffff;
}

.news-list-content {
    padding: 15px;
}

.news-list-panel {
    display: none;
}

.news-list-panel.active {
    display: block;
}

.news-item-new {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-item-new:last-child {
    border-bottom: none;
}

.news-item-new:hover {
    padding-left: 8px;
    text-decoration: none;
}

.news-bullet {
    width: 6px;
    height: 6px;
    background: #00d4aa;
    border-radius: 50%;
    flex-shrink: 0;
}

.news-item-title {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.4;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
}

.news-item-new:hover .news-item-title {
    color: #00d4aa;
}

.news-item-date {
    font-size: 12px;
    color: #636e72;
    flex-shrink: 0;
    white-space: nowrap;
}

/* ?????????? */
.football-data-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.data-box {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e8ecf1;
    overflow: hidden;
}

.data-box-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    border-bottom: 2px solid #e8ecf1;
}

.data-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-icon.standings {
    background: linear-gradient(135deg, #ffd93d, #ff9500);
}

.data-icon.standings::before {
    content: '';
    width: 16px;
    height: 16px;
    background: #ffffff;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.data-icon.scorers {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.data-icon.scorers::before {
    content: '';
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
}

.data-box-header h5 {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}

.league-select-mini {
    padding: 6px 12px;
    border: 1px solid #e8ecf1;
    border-radius: 6px;
    font-size: 12px;
    color: #636e72;
    background: #ffffff;
    cursor: pointer;
}

/* ????? */
.standings-list {
    padding: 10px;
}

.standings-row {
    display: grid;
    grid-template-columns: 40px 1fr 35px 35px;
    align-items: center;
    padding: 12px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.standings-row:hover {
    background: #f8f9fa;
}

.standings-row.header {
    font-size: 11px;
    font-weight: 700;
    color: #636e72;
    padding: 10px;
    border-bottom: 1px solid #e8ecf1;
}

.standings-row.top-team {
    background: rgba(0,212,170,0.05);
}

.col-pos {
    font-weight: 700;
    color: #636e72;
    text-align: center;
}

.col-pos.pos-1,
.col-pos.pos-2,
.col-pos.pos-3 {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin: 0 auto;
}

.col-pos.pos-1 {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a1a2e;
}

.col-pos.pos-2 {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: #1a1a2e;
}

.col-pos.pos-3 {
    background: linear-gradient(135deg, #cd7f32, #b87333);
    color: #ffffff;
}

.col-club {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
}

.club-color {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.club-color.mancity { background: #6CABDD; }
.club-color.arsenal { background: #EF0107; }
.club-color.liverpool { background: #C8102E; }
.club-color.villa { background: #95BFE5; }
.club-color.spurs { background: #132257; }
.club-color.chelsea { background: #034694; }

.col-played {
    font-size: 12px;
    color: #636e72;
    text-align: center;
}

.col-pts {
    font-size: 14px;
    font-weight: 800;
    color: #00d4aa;
    text-align: center;
}

.view-full-link {
    display: block;
    text-align: center;
    padding: 15px;
    color: #00d4aa;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-top: 1px solid #e8ecf1;
    transition: all 0.3s ease;
}

.view-full-link:hover {
    background: #f8f9fa;
    text-decoration: none;
}

/* ????? */
.scorers-box {
    padding-bottom: 15px;
}

.scorers-list-new {
    padding: 10px 15px;
}

.scorer-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.scorer-row:last-child {
    border-bottom: none;
}

.scorer-row.top .scorer-rank {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #ffffff;
}

.scorer-rank {
    width: 28px;
    height: 28px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #636e72;
}

.scorer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.scorer-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.scorer-club {
    font-size: 11px;
    color: #636e72;
}

.scorer-goals {
    font-size: 18px;
    font-weight: 800;
    color: #00d4aa;
}

/* ???? */
@media (max-width: 1200px) {
    .football-content-new {
        grid-template-columns: 1fr;
    }
    
    .football-data-new {
        order: -1;
        flex-direction: row;
    }
    
    .data-box {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .football-section-title {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .title-main {
        flex-direction: column;
    }
    
    .football-sub-news {
        grid-template-columns: 1fr;
    }
    
    .football-data-new {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 20px;
    }
}

/* ========================================
   ??????? - Basketball Section
   ======================================== */
.section-basketball {
    background: var(--gradient-dark);
    padding: 50px 0;
    position: relative;
}

.basketball-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.basketball-icon::before {
    content: '';
    width: 30px;
    height: 30px;
    background: var(--white);
    border-radius: 50%;
}

.basketball-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.basketball-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
    text-decoration: none;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}

.gallery-overlay h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.basketball-news-list {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.1);
}

.basketball-news-list h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.basketball-news-list ul {
    list-style: none;
}

.basketball-news-list li {
    margin-bottom: 12px;
}

.basketball-news-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.basketball-news-list li a:hover {
    color: var(--primary);
}

.basketball-news-list .dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========================================
   ???????? - Analysis Section
   ======================================== */
.section-analysis {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
    padding: 60px 0;
}

.analysis-header {
    text-align: center;
    margin-bottom: 40px;
}

.analysis-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.icon-analyst::before {
    content: '';
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.analysis-header p {
    font-size: 16px;
    color: var(--gray);
}

.analysis-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.category-card.highlight {
    background: var(--gradient-dark);
    color: var(--white);
}

.category-card.highlight::before {
    background: var(--gradient-hot);
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tips-icon { background: linear-gradient(135deg, #74b9ff, #0984e3); }
.tips-icon::before { content: ''; width: 24px; height: 24px; background: var(--white); border-radius: 50%; }

.news-icon { background: linear-gradient(135deg, #fd79a8, #e84393); }
.news-icon::before { content: ''; width: 24px; height: 24px; background: var(--white); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }

.odds-icon { background: linear-gradient(135deg, #00b894, #00cec9); }
.odds-icon::before { content: ''; width: 24px; height: 24px; background: var(--white); border-radius: 4px; }

.vip-icon { background: var(--gradient-hot); }
.vip-icon::before { content: ''; width: 24px; height: 24px; background: var(--white); clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%); }

.category-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.category-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.category-card li {
    margin-bottom: 12px;
}

.category-card li a {
    color: var(--gray);
    font-size: 14px;
    text-decoration: none;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: var(--transition);
}

.category-card li a:hover {
    color: var(--primary);
}

.category-card.highlight li a {
    color: rgba(255,255,255,0.7);
}

.category-card.highlight li a:hover {
    color: var(--white);
}

.category-more {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.category-more:hover {
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
}

.category-card.highlight .category-more {
    border-color: var(--white);
    color: var(--white);
}

.category-card.highlight .category-more:hover {
    background: var(--white);
    color: var(--dark);
}

/* ========================================
   ????????? - Experts Section
   ======================================== */
.section-experts {
    background: var(--white);
    padding: 60px 0;
}

.experts-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.experts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.experts-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-crown::before {
    content: '';
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.period-tabs {
    display: flex;
    gap: 10px;
}

.period-btn {
    padding: 8px 20px;
    background: var(--light);
    border: none;
    border-radius: 20px;
    color: var(--gray);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.period-btn.active,
.period-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

/* ?????????? */
.expert-period-panel {
    display: none;
}

.expert-period-panel.active {
    display: block;
}

/* ??? */
.experts-podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px 0;
}

.podium-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition);
}

.podium-item:hover {
    transform: translateY(-10px);
}

.podium-item.rank-1 {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: var(--dark);
    order: 2;
    padding-top: 50px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.podium-item.rank-2 {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: var(--dark);
    order: 1;
    transform: translateY(20px);
}

.podium-item.rank-2:hover {
    transform: translateY(10px);
}

.podium-item.rank-3 {
    background: linear-gradient(135deg, #cd7f32, #b87333);
    color: var(--white);
    order: 3;
    transform: translateY(40px);
}

.podium-item.rank-3:hover {
    transform: translateY(30px);
}

.podium-avatar {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podium-avatar::before {
    content: '';
    width: 40px;
    height: 40px;
    background: var(--dark);
    border-radius: 50%;
}

.rank-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.avatar-initial {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    z-index: 2;
}

/* ?????????? */
.podium-item.rank-1 .avatar-initial {
    color: #b8860b;
}

.podium-item.rank-2 .avatar-initial {
    color: #808080;
}

.podium-item.rank-3 .avatar-initial {
    color: #8b4513;
}

.podium-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.win-rate-large {
    font-size: 36px;
    font-weight: 800;
    margin: 10px 0;
}

.podium-item p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.view-profile {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.3);
    color: inherit;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.view-profile:hover {
    background: rgba(255,255,255,0.5);
    text-decoration: none;
}

/* ??????? */
.experts-list {
    background: var(--light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.list-header-row {
    display: grid;
    grid-template-columns: 60px 1fr 60px 60px 60px 80px 80px;
    padding: 15px 20px;
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.list-header-row span:first-child,
.list-header-row span:nth-child(2) {
    text-align: left;
}

.experts-list ul {
    list-style: none;
}

.experts-list li {
    display: grid;
    grid-template-columns: 60px 1fr 60px 60px 60px 80px 80px;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.experts-list li:hover {
    background: var(--white);
}

.experts-list li:last-child {
    border-bottom: none;
}

.list-rank {
    font-weight: 700;
    color: var(--gray);
}

.list-name {
    text-align: left;
    font-weight: 600;
    color: var(--dark);
}

.list-stat {
    font-weight: 600;
}

.list-stat.win { color: var(--primary); }
.list-stat.draw { color: var(--gray); }
.list-stat.loss { color: var(--secondary); }

.list-rate {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
}

.list-action a {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.list-action a:hover {
    box-shadow: var(--shadow-glow);
    text-decoration: none;
}

/* ????? */
.experts-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-block {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.sidebar-block h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.expert-mini-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.expert-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.expert-mini:hover {
    box-shadow: var(--shadow-sm);
}

.mini-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-avatar::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
}

.mini-info {
    flex: 1;
}

.mini-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
}

.mini-info p {
    font-size: 12px;
    color: var(--gray);
}

.mini-follow {
    width: 32px;
    height: 32px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.mini-follow:hover {
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
}

/* ?????????????? */
.sidebar-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light);
}

.sidebar-tab {
    flex: 1;
    padding: 8px 12px;
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.sidebar-tab.active {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: var(--white);
}

.sidebar-panel {
    display: none;
}

.sidebar-panel.active {
    display: block;
}

.rank-mini-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rank-mini-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.rank-mini-item:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(3px);
    text-decoration: none;
    color: inherit;
}

.rank-num {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
}

.rank-mini-item:nth-child(1) .rank-num {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #fff;
}

.rank-mini-item:nth-child(2) .rank-num {
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
    color: #fff;
}

.rank-mini-item:nth-child(3) .rank-num {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
    color: #fff;
}

.rank-avatar {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.rank-info {
    flex: 1;
    min-width: 0;
}

.rank-info h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-info p {
    font-size: 11px;
    color: var(--gray);
}

.rank-rate {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

/* ========================================
   ???????
   ======================================== */
@media (max-width: 1200px) {
    .portal-wrapper {
        padding: 0 20px;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
    }
    
    #main-slider {
        height: 350px;
    }
    
    .slide-title {
        font-size: 24px;
    }
    
    .live-matches {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .football-grid {
        grid-template-columns: 1fr;
    }
    
    .basketball-grid {
        grid-template-columns: 1fr;
    }
    
    .basketball-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .analysis-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experts-layout {
        grid-template-columns: 1fr;
    }
    
    .experts-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .section-header-large {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .league-nav {
        flex-wrap: wrap;
    }
    
    .live-matches {
        grid-template-columns: 1fr;
    }
    
    .basketball-gallery {
        grid-template-columns: 1fr;
    }
    
    .analysis-categories {
        grid-template-columns: 1fr;
    }
    
    .experts-podium {
        flex-direction: column;
        align-items: center;
    }
    
    .podium-item.rank-2,
    .podium-item.rank-3 {
        transform: none;
    }
    
    .podium-item.rank-2:hover,
    .podium-item.rank-3:hover {
        transform: translateY(-10px);
    }
    
    .list-header-row,
    .experts-list li {
        grid-template-columns: 40px 1fr 60px 80px;
        font-size: 12px;
    }
    
    .list-header-row span:nth-child(3),
    .list-header-row span:nth-child(4),
    .list-header-row span:nth-child(5),
    .experts-list li .list-stat {
        display: none;
    }
}

/* ========================================
   ????????
   ======================================== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-zone,
.live-bar,
.section-football,
.section-basketball,
.section-analysis,
.section-experts {
    animation: fadeIn 0.8s ease-out;
}

.category-card,
.live-match-item,
.gallery-item {
    animation: slideInUp 0.6s ease-out;
}

/* ========================================
   ??????? - ??????
   ======================================== */
.section-basketball-new {
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    padding-bottom: 60px;
}

.basketball-league-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.basketball-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 30px 0;
}

.basketball-icon-big {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.basketball-icon-big::before {
    content: '?';
    font-size: 32px;
}

/* ???????????? - ???????? */
.basketball-content-new {
    display: grid;
    grid-template-columns: 1.4fr 1fr 320px;
    gap: 30px;
}

/* ??????????? */
.basketball-main-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ??????? */
.basketball-hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.basketball-hero .hero-article {
    display: block;
    position: relative;
    height: 320px;
    text-decoration: none;
}

.basketball-hero .hero-image {
    width: 100%;
    height: 100%;
}

.basketball-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.basketball-hero .hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.basketball-hero .hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
}

.basketball-hero .hero-overlay h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 10px;
}

.basketball-hero .hero-overlay p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* ??????? */
.basketball-sub-news {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.basketball-sub-news .sub-news-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-decoration: none;
    transition: all 0.3s ease;
}

.basketball-sub-news .sub-news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.basketball-sub-news .sub-news-image {
    width: 100px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.basketball-sub-news .sub-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.basketball-sub-news .sub-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.basketball-sub-news .sub-news-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.basketball-sub-news .sub-news-time {
    font-size: 12px;
    color: #636e72;
}

/* ???????????? */
.basketball-news-list-new {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

/* ?????????? */
.basketball-data-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ?????????? */
.data-panel-new {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.panel-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.panel-header-new h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}

.data-tabs {
    display: flex;
    gap: 10px;
}

.data-tab {
    padding: 6px 14px;
    background: #f5f5f5;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    color: #636e72;
    cursor: pointer;
    transition: all 0.3s ease;
}

.data-tab.active,
.data-tab:hover {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #fff;
}

.data-content {
    display: none;
}

.data-content.active {
    display: block;
}

.data-list-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.data-item-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.data-item-compact:last-child {
    border-bottom: none;
}

.rank-num {
    width: 24px;
    height: 24px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #636e72;
    flex-shrink: 0;
}

.data-item-compact.rank-1 .rank-num {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a1a2e;
}

.data-item-compact.rank-2 .rank-num {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: #1a1a2e;
}

.data-item-compact.rank-3 .rank-num {
    background: linear-gradient(135deg, #cd7f32, #b87333);
    color: #fff;
}

.player-name {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.player-team {
    font-size: 12px;
    color: #636e72;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 12px;
}

.player-stat {
    font-size: 14px;
    font-weight: 700;
    color: #ff6b6b;
}

.view-more-link {
    font-size: 13px;
    color: #00d4aa;
    text-decoration: none;
    font-weight: 500;
}

.view-more-link:hover {
    text-decoration: underline;
}

/* ?????????? */
.standings-simple {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.standing-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.standing-item:last-child {
    border-bottom: none;
}

.standing-rank {
    width: 28px;
    height: 28px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #636e72;
    flex-shrink: 0;
}

.standing-rank.rank-gold {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a1a2e;
}

.standing-rank.rank-silver {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: #1a1a2e;
}

.standing-rank.rank-bronze {
    background: linear-gradient(135deg, #cd7f32, #b87333);
    color: #fff;
}

.standing-team {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.standing-record {
    font-size: 13px;
    font-weight: 700;
    color: #00d4aa;
}

/* ???? */
@media (max-width: 1200px) {
    .basketball-content-new {
        grid-template-columns: 1fr 1fr;
    }
    
    .basketball-data-new {
        display: none;
    }
}

@media (max-width: 768px) {
    .basketball-content-new {
        grid-template-columns: 1fr;
    }
    
    .basketball-sub-news {
        grid-template-columns: 1fr;
    }
    
    .basketball-hero .hero-article {
        height: 250px;
    }
    
    .basketball-hero .hero-overlay h3 {
        font-size: 18px;
    }
}

/* ========================================
   ???????? - ??????
   ======================================== */
.section-analysis-new {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0;
    font-family: 'Microsoft YaHei', 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
}

.analysis-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.header-title-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.analysis-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analysis-icon::before {
    content: '?';
    font-size: 24px;
}

.analysis-header-new h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.analysis-header-new p {
    font-size: 15px;
    color: #636e72;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.view-all-analysis {
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.view-all-analysis:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* ??????? */
.analysis-tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.analysis-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    color: #636e72;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.analysis-tab:hover {
    background: #f5f5f5;
    color: #1a1a2e;
}

.analysis-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 700;
}

/* ??????? */
.analysis-content-panel {
    display: none;
}

.analysis-content-panel.active {
    display: block;
}

/* ??????????? */
.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* ??????? */
.hot-section {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border-radius: var(--radius-lg);
    padding: 25px;
    border: 1px solid #ffe0e0;
}

.hot-matches {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.match-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 3px solid var(--primary-color);
}

.match-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.match-type {
    font-size: 12px;
    font-weight: 600;
}

.match-time {
    font-size: 12px;
    color: var(--text-light);
}

.match-teams a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-dark);
}

.match-teams a:hover {
    text-decoration: none;
}

.team {
    font-size: 14px;
    font-weight: 500;
}

.vs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
}


/* ????? */
.analysis-featured {
    position: relative;
}

.featured-card {
    display: block;
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.featured-image {
    width: 100%;
    height: 100%;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.featured-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
}

.featured-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 10px;
}

.featured-content p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* ??????? */
.analysis-list-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.analysis-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.analysis-list-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.item-num {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.item-body {
    flex: 1;
    min-width: 0;
}

.item-body h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.item-category {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}

.item-date {
    font-size: 12px;
    color: #636e72;
    flex-shrink: 0;
}

/* ???????????? */
.analysis-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-article-card {
    display: block;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.category-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.category-article-card.vip-highlight {
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    border: 2px solid #ffd700;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.card-tag {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.card-tag.tips {
    background: #e3f2fd;
    color: #1976d2;
}

.card-tag.news {
    background: #f3e5f5;
    color: #7b1fa2;
}

.card-tag.odds {
    background: #e8f5e9;
    color: #388e3c;
}

.card-tag.vip {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a1a2e;
}

.card-tag.data {
    background: #e3f2fd;
    color: #1976d2;
}

.card-tag.bjdc {
    background: #fce4ec;
    color: #c2185b;
}

.card-tag.preview {
    background: #e8f5e9;
    color: #388e3c;
}

.card-tag.dynamic {
    background: #fff3e0;
    color: #f57c00;
}

.card-date {
    font-size: 12px;
    color: #636e72;
}

.category-article-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ???? */
@media (max-width: 1200px) {
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .analysis-tabs-nav {
        flex-wrap: wrap;
    }
    
    .analysis-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .analysis-category-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-card {
        height: 280px;
    }
    
    .featured-content h3 {
        font-size: 16px;
    }
}

/* ========================================
   ??????? - ??index_new.css???
   ======================================== */
.hot-section {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    padding: 25px;
    border: 1px solid rgba(0, 212, 170, 0.1);
}

.hot-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light);
}

.hot-section .section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-fire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    border-radius: var(--radius-sm);
    position: relative;
}

.icon-fire::before {
    content: '?';
    font-size: 14px;
}

.hot-matches {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.match-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 3px solid var(--primary);
}

.match-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.match-type {
    font-size: 12px;
    font-weight: 600;
}

.match-time {
    font-size: 12px;
    color: var(--gray);
}

.match-teams a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--dark);
    text-decoration: none;
}

.match-teams a:hover {
    text-decoration: none;
}

.match-teams .team {
    font-size: 14px;
    font-weight: 600;
}

.match-teams .vs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
}

/* ??????????? */
@media (max-width: 768px) {
    .hot-matches {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ??????????? - News List Page
   ======================================== */

/* ???????? */
.page-header-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    margin-bottom: 30px;
    border-radius: var(--radius-lg);
}

.page-header {
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-title i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.page-desc {
    font-size: 16px;
    color: var(--gray-light);
    opacity: 0.8;
}

/* ???????? */
.category-nav-section {
    margin-bottom: 30px;
}

.category-nav {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.category-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-nav-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    text-decoration: none;
}

.category-nav-item.active {
    background: var(--gradient-primary);
    color: var(--white);
}

.nav-icon {
    width: 24px;
    height: 24px;
    background: var(--light);
    border-radius: var(--radius-sm);
}

.category-nav-item.active .nav-icon {
    background: rgba(255,255,255,0.3);
}

/* ??????????? */
.news-list-section {
    margin-bottom: 50px;
}

.news-list-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
}

/* ?????????? */
.news-list-main {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.news-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light);
}

.news-list-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.article-count {
    font-size: 14px;
    color: var(--gray);
}

/* ????????? */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-list-item {
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.news-list-item:hover {
    background: var(--light);
}

.news-item-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    text-decoration: none;
    color: inherit;
}

.news-item-link:hover {
    text-decoration: none;
    color: inherit;
}

.news-item-meta {
    flex-shrink: 0;
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--white);
}

.date-day {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.date-month {
    font-size: 12px;
    font-weight: 500;
}

.news-item-content {
    flex: 1;
    min-width: 0;
}

.news-item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item-info {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--gray);
}

.news-item-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: var(--transition);
}

.news-list-item:hover .news-item-arrow {
    background: var(--primary);
    color: var(--white);
}

/* ??? */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--light);
}

.page-btn,
.page-num {
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    transition: var(--transition);
}

.page-btn:hover,
.page-num:hover {
    border-color: var(--primary);
    color: var(--primary);
    text-decoration: none;
}

.page-num.current {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: var(--white);
}

.page-ellipsis {
    color: var(--gray);
    padding: 0 5px;
}

/* ??????? */
.news-list-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-title i {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

/* ??????? */
.hot-news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hot-news-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.hot-news-item:hover {
    color: var(--primary);
    text-decoration: none;
}

.hot-news-num {
    width: 24px;
    height: 24px;
    background: var(--light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    flex-shrink: 0;
}

.hot-news-item:nth-child(1) .hot-news-num {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #fff;
}

.hot-news-item:nth-child(2) .hot-news-num {
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
    color: #fff;
}

.hot-news-item:nth-child(3) .hot-news-num {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
    color: #fff;
}

.hot-news-title {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ?????? */
.expert-mini-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.expert-mini-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.expert-mini-item:hover {
    text-decoration: none;
    color: inherit;
}

.expert-mini-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.expert-mini-info {
    flex: 1;
}

.expert-mini-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.expert-mini-info p {
    font-size: 12px;
    color: var(--gray);
}

/* ???? */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.empty-state p {
    font-size: 16px;
    color: var(--gray);
}

/* ???? */
@media (max-width: 1200px) {
    .news-list-layout {
        grid-template-columns: 1fr;
    }
    
    .news-list-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 24px;
    }
    
    .category-nav {
        gap: 10px;
    }
    
    .category-nav-item {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .news-item-link {
        gap: 15px;
        padding: 12px;
    }
    
    .news-date {
        width: 50px;
        height: 50px;
    }
    
    .date-day {
        font-size: 20px;
    }
    
    .news-item-title {
        font-size: 14px;
    }
    
    .news-item-arrow {
        display: none;
    }
}

/* ========================================
   ?????? - Icon Styles
   ======================================== */

/* ?????? - ??CSS?? */
.icon-category {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-category::before {
    content: '';
    width: 24px;
    height: 28px;
    background: var(--white);
    border-radius: 2px;
    position: relative;
}

.icon-category::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 8px;
    background: var(--primary);
    border-radius: 1px;
}

/* ?????? - ??CSS?? */
.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    position: relative;
}

/* ???? */
.icon-hot::before {
    content: '';
    width: 16px;
    height: 20px;
    background: linear-gradient(to top, #ff6b6b, #ffd93d);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: absolute;
}

/* ?????? */
.icon-data::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 2px;
    width: 4px;
    height: 12px;
    background: var(--primary);
    border-radius: 1px;
    box-shadow: 6px 4px 0 var(--primary), 12px 0px 0 var(--primary);
}

/* ?????? */
.icon-tips {
    background: linear-gradient(135deg, #ffd93d 0%, #ff6b6b 100%);
    border-radius: 50%;
}

.icon-tips::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 5px;
}

.icon-tips::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 6px;
    height: 4px;
    background: var(--white);
    border-radius: 1px;
}

/* ??????? */
.icon-preview::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    position: absolute;
}

.icon-preview::after {
    content: '';
    position: absolute;
    right: 2px;
    bottom: 2px;
    width: 8px;
    height: 3px;
    background: var(--primary);
    transform: rotate(45deg);
}

/* ?????? */
.icon-news::before {
    content: '';
    width: 16px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
}

.icon-news::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 2px;
    background: var(--white);
    box-shadow: 0 4px 0 var(--white), 0 8px 0 var(--white);
}

/* ???? */
.icon-beijing::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    position: absolute;
}

.icon-beijing::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* ?????? */
.icon-odds::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 2px;
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.icon-odds::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 16px;
    background: var(--primary);
    bottom: 2px;
    left: 2px;
}

/* ?????? */
.icon-dynamic::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 16px solid #ffd93d;
    transform: rotate(-15deg);
}

/* ???? */
.icon-arrow-right::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
    transform: rotate(45deg);
}

/* ??????? */
.icon-fire {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    border-radius: 50%;
}

.icon-fire::before {
    content: '';
    width: 12px;
    height: 14px;
    background: var(--white);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

/* ?????? */
.icon-expert::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 3px;
}

.icon-expert::after {
    content: '';
    position: absolute;
    bottom: 2px;
    width: 18px;
    height: 8px;
    background: var(--primary);
    border-radius: 10px 10px 0 0;
}

/* ????????? */
.category-nav-item.active .nav-icon {
    background: rgba(255,255,255,0.2);
}

.category-nav-item.active .icon-tips,
.category-nav-item.active .icon-fire {
    background: rgba(255,255,255,0.3);
}

/* ========================================
   ???????? - Expert Ranking Styles
   ======================================== */

.expert-ranking-block {
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
}

.expert-ranking-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.expert-ranking-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.expert-ranking-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: inherit;
    border-color: var(--primary);
}

/* ??????? */
.expert-ranking-item.rank-1 {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fff9e6 0%, var(--white) 100%);
}

.expert-ranking-item.rank-2 {
    border-color: #c0c0c0;
    background: linear-gradient(135deg, #f5f5f5 0%, var(--white) 100%);
}

.expert-ranking-item.rank-3 {
    border-color: #cd7f32;
    background: linear-gradient(135deg, #faf0e6 0%, var(--white) 100%);
}

/* ???? */
.expert-ranking-badge {
    width: 28px;
    height: 28px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--gray);
    flex-shrink: 0;
}

.expert-ranking-item.rank-1 .expert-ranking-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(255, 183, 0, 0.4);
}

.expert-ranking-item.rank-2 .expert-ranking-badge {
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(160, 160, 160, 0.4);
}

.expert-ranking-item.rank-3 .expert-ranking-badge {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(184, 115, 51, 0.4);
}

/* ?? */
.expert-ranking-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.3);
}

.expert-ranking-item.rank-1 .expert-ranking-avatar {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    box-shadow: 0 2px 8px rgba(255, 183, 0, 0.4);
}

.expert-ranking-item.rank-2 .expert-ranking-avatar {
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
    box-shadow: 0 2px 8px rgba(160, 160, 160, 0.4);
}

.expert-ranking-item.rank-3 .expert-ranking-avatar {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
    box-shadow: 0 2px 8px rgba(184, 115, 51, 0.4);
}

/* ??? */
.expert-ranking-info {
    flex: 1;
    min-width: 0;
}

.expert-ranking-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.expert-ranking-stats {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 6px;
}

.expert-record {
    background: var(--light);
    padding: 2px 6px;
    border-radius: 10px;
}

/* ????? */
.expert-winrate-bar {
    width: 100%;
    height: 6px;
    background: var(--light);
    border-radius: 3px;
    overflow: hidden;
}

.winrate-progress {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* ???? */
.expert-ranking-rate {
    text-align: center;
    flex-shrink: 0;
    min-width: 45px;
}

.rate-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.rate-unit {
    font-size: 11px;
    color: var(--gray);
}

.expert-ranking-item.rank-1 .rate-value {
    color: #b8860b;
}

.expert-ranking-item.rank-2 .rate-value {
    color: #808080;
}

.expert-ranking-item.rank-3 .rate-value {
    color: #8b4513;
}

/* ========================================
   ???????? - News Card Styles
   ======================================== */

.news-card-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
    transition: var(--transition);
    border: 1px solid var(--light);
    overflow: hidden;
}

.news-card-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.news-card-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
}

.news-card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* ???? */
.news-card-date {
    flex-shrink: 0;
}

.date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.date-day {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.date-month {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

/* ??? */
.news-card-body {
    flex: 1;
    min-width: 0;
}

.news-card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.news-card-item:hover .news-card-title {
    color: var(--primary);
}

/* ??? */
.news-card-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--gray);
}

.meta-time,
.meta-category {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-time i,
.meta-category i {
    width: 16px;
    height: 16px;
    background: var(--light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.meta-category {
    color: var(--primary);
    font-weight: 500;
}

/* ??? */
.news-card-action {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    white-space: nowrap;
}

.news-card-action i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

.news-card-item:hover .news-card-action {
    background: var(--gradient-primary);
}

.news-card-item:hover .read-more,
.news-card-item:hover .news-card-action i {
    color: var(--white);
}

/* ???? */
.icon-clock::before {
    content: '';
    width: 8px;
    height: 8px;
    border: 2px solid var(--gray);
    border-radius: 50%;
    position: relative;
}

.icon-clock::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 4px;
    background: var(--gray);
    transform: rotate(45deg);
    margin-top: -2px;
}

/* ???? */
.icon-tag::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid var(--primary);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* ????? */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.empty-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.empty-icon::before {
    content: '';
    width: 50px;
    height: 60px;
    background: var(--gray);
    border-radius: 3px;
    opacity: 0.3;
}

.empty-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 4px;
    background: var(--white);
    border-radius: 2px;
    top: 35px;
}

.empty-state p {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

/* ???? */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.page-btn,
.page-num {
    padding: 12px 20px;
    background: var(--light);
    border: none;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.page-btn:hover,
.page-num:hover {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
}

.page-num.current {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.page-ellipsis {
    color: var(--gray);
    padding: 0 10px;
    font-weight: 600;
}

/* ?????? */
.news-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.news-list-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-list-header h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.article-count {
    font-size: 14px;
    color: var(--gray);
    background: var(--light);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
}

/* ========================================
   ?????? - Featured News Card
   ======================================== */

.featured-news-card {
    margin-bottom: 25px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-news-link {
    display: block;
    position: relative;
    height: 400px;
    text-decoration: none;
    color: inherit;
}

.featured-news-link:hover {
    text-decoration: none;
    color: inherit;
}

.featured-news-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.featured-news-card:hover .featured-news-image {
    transform: scale(1.05);
}

.featured-news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.featured-news-content {
    color: var(--white);
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-badge i {
    width: 16px;
    height: 16px;
    background: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.featured-badge i::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid var(--primary);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    transform: rotate(-15deg);
}

.featured-news-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--white);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-news-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-time {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.featured-read {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    color: var(--dark);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.featured-read i {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-news-card:hover .featured-read {
    background: var(--primary);
    color: var(--white);
}

/* ??? */
@media (max-width: 768px) {
    .featured-news-link {
        height: 300px;
    }
    
    .featured-news-overlay {
        padding: 25px;
    }
    
    .featured-news-title {
        font-size: 20px;
    }
    
    .featured-news-desc {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
}

/* ========================================
   ??????? - Article Page Styles
   ======================================== */

/* ????? */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    font-size: 14px;
    color: var(--gray);
}

.breadcrumb-nav a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--primary);
}

.breadcrumb-nav .current {
    color: var(--dark);
    font-weight: 500;
}

.breadcrumb-nav i {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-chevron-right::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--gray);
    border-right: 2px solid var(--gray);
    transform: rotate(45deg);
}

/* ???? */
.article-section {
    margin-bottom: 50px;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
}

/* ???? */
.article-main {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
}

/* ???? */
.article-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light);
}

.article-category-tag {
    margin-bottom: 15px;
}

.article-category-tag a {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s;
}

.article-category-tag a:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--white);
}

.article-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 25px;
    font-size: 14px;
    color: var(--gray);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ???? */
.icon-author::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
}

.icon-author::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 6px;
    background: var(--primary);
    border-radius: 8px 8px 0 0;
    margin-top: 8px;
}

.icon-calendar::before {
    content: '';
    width: 14px;
    height: 14px;
    border: 2px solid var(--primary);
    border-radius: 2px;
    position: relative;
}

.icon-eye::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: relative;
}

.icon-eye::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* ????? */
.article-hero-image {
    margin: -40px -40px 30px;
    height: 400px;
    overflow: hidden;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 文章简介卡片 */
.article-intro-card {
    display: flex;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f7 100%);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin: 20px 0 30px;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.1);
}

.intro-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-intro::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid var(--white);
    border-radius: 50%;
    position: relative;
}

.icon-intro::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    margin-top: -2px;
}

.intro-content {
    flex: 1;
}

.intro-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.intro-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin: 0;
}

/* 文章内容区域美化 */
.article-content {
    font-size: 17px;
    line-height: 2;
    color: var(--dark);
    padding: 20px 0;
}

/* 段落样式 */
.article-content p {
    margin-bottom: 25px;
    text-align: justify;
}

/* 标题样式 */
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    margin: 40px 0 20px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.4;
}

.article-content h1 {
    font-size: 28px;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 15px;
}

.article-content h2 {
    font-size: 24px;
    color: var(--primary-dark);
    position: relative;
    padding-left: 15px;
}

.article-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.article-content h3 {
    font-size: 20px;
    color: var(--gray-dark);
}

.article-content h4 {
    font-size: 18px;
}

/* 图片样式 */
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 25px 0;
    box-shadow: var(--shadow-md);
    display: block;
}

/* 表格样式 */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.article-content th,
.article-content td {
    padding: 15px;
    border: 1px solid var(--light);
    text-align: left;
}

.article-content th {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.article-content tr:nth-child(even) {
    background: var(--light);
}

.article-content tr:hover {
    background: rgba(0, 212, 170, 0.05);
}

/* 列表样式 */
.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
    position: relative;
}

.article-content ul li::marker {
    color: var(--primary);
    font-size: 1.2em;
}

/* 引用块样式 */
.article-content blockquote {
    margin: 25px 0;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--gray-dark);
}

/* 链接样式 */
.article-content a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary);
    transition: all 0.3s;
}

.article-content a:hover {
    color: var(--primary-dark);
    border-bottom-style: solid;
}

/* 代码样式 */
.article-content code {
    background: var(--light);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9em;
    color: var(--secondary);
}

.article-content pre {
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 25px 0;
}

.article-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* 分割线样式 */
.article-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--light), transparent);
    margin: 40px 0;
}

/* 强调样式 */
.article-content strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.article-content em {
    color: var(--secondary);
}

/* 图文混排 */
.article-content .align-left {
    float: left;
    margin: 0 25px 15px 0;
    max-width: 50%;
}

.article-content .align-right {
    float: right;
    margin: 0 0 15px 25px;
    max-width: 50%;
}

/* 清除浮动 */
.article-content::after {
    content: '';
    display: table;
    clear: both;
}

/* ???? */
.article-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label {
    font-size: 14px;
    color: var(--gray);
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-wechat {
    background: #07c160;
}

.share-weibo {
    background: #e6162d;
}

.share-qq {
    background: #12b7f5;
}

.share-btn i {
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
}

.article-nav {
    display: flex;
    gap: 15px;
}

.back-to-list {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--light);
    border-radius: var(--radius-md);
    color: var(--gray-dark);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.back-to-list:hover {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
}

.back-to-list i {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-arrow-left::before {
    content: '';
    width: 8px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

/* ????? */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ????? */
.author-block {
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.author-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 13px;
    color: var(--gray);
}

.author-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    padding-top: 15px;
    border-top: 1px solid var(--light);
}

/* ???? */
.related-articles {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.related-item:hover {
    color: var(--primary);
    text-decoration: none;
}

.related-num {
    width: 28px;
    height: 28px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray);
    flex-shrink: 0;
}

.related-content {
    flex: 1;
    min-width: 0;
}

.related-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-date {
    font-size: 12px;
    color: var(--gray);
}

/* ???? */
.hot-articles {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.hot-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hot-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.hot-item:hover {
    color: var(--primary);
    text-decoration: none;
}

.hot-rank {
    width: 28px;
    height: 28px;
    background: var(--light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray);
    flex-shrink: 0;
}

.hot-rank.top {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #fff;
}

.hot-rank.top:nth-child(2) {
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
}

.hot-rank.top:nth-child(3) {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
}

.hot-title {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ??? */
@media (max-width: 1200px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .article-main {
        padding: 25px;
    }
    
    .article-title {
        font-size: 24px;
    }
    
    .article-meta {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .article-hero-image {
        margin: -25px -25px 25px;
        height: 250px;
    }
    
    .article-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}
