/* ============================================
   PIALA DUNIA 2026 - PREMIUM CSS
   Fully Responsive | Modern Design
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #0066CC;
    --blue-dark: #004999;
    --blue-light: #3B82F6;
    --red: #FF0033;
    --gold: #FFCC00;
    --gold-dark: #FF9900;
    --green: #00CC66;
    --dark: #0A1128;
    --white: #FFFFFF;
    --gray-100: #F8FAFC;
    --gray-200: #F1F5F9;
    --gray-300: #E2E8F0;
    --gray-400: #CBD5E1;
    --gray-500: #94A3B8;
    --gray-600: #64748B;
    --gray-700: #475569;
    --gray-800: #1E293B;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 35px rgba(0,0,0,0.15);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F5F7FC;
    color: var(--gray-800);
    line-height: 1.5;
    overflow-x: hidden;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0,102,204,0.03), transparent),
                radial-gradient(circle at 80% 70%, rgba(255,0,51,0.02), transparent);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER ========== */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-circle {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue), #0099FF);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0,102,204,0.2);
}

.logo-text {
    font-weight: 800;
    font-size: 1.3rem;
}

.logo-text span {
    background: linear-gradient(135deg, var(--blue), var(--red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.header-links {
    display: flex;
    gap: 8px;
    background: var(--gray-200);
    padding: 4px;
    border-radius: 40px;
}

.header-links a {
    padding: 8px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    color: var(--gray-600);
    transition: var(--transition);
}

.header-links a:hover {
    background: rgba(0,102,204,0.1);
    color: var(--blue);
}

.header-links a.active {
    background: var(--blue);
    color: white;
}

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

.btn-gold, .btn-green {
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--gray-800);
}

.btn-green {
    background: linear-gradient(135deg, var(--green), #00AA55);
    color: white;
}

.mobile-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: white;
    z-index: 200;
    transition: right 0.3s;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray-300);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu-links a {
    padding: 14px 0;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-links a.active {
    color: var(--blue);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 150;
    display: none;
}

.overlay.active {
    display: block;
}

/* ========== HERO ========== */
.hero {
    text-align: center;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue), #0099FF);
    color: white;
    padding: 5px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(90deg, var(--blue), var(--red), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.hero-buttons {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--gray-800);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

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

.btn-outline {
    border: 2px solid var(--blue);
    color: var(--blue);
    padding: 10px 26px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--blue);
    color: white;
}

/* ========== SECTION ========== */
.section {
    margin-bottom: 48px;
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue), #0099FF);
    color: white;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ========== COUNTDOWN SECTION ========== */
.countdown-card {
    background: linear-gradient(145deg, #0A1128 0%, #0F1A30 50%, #0A1128 100%);
    border-radius: 32px;
    padding: 48px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
}

.countdown-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0,102,204,0.15), transparent);
    border-radius: 50%;
    z-index: 0;
}

.countdown-decoration.top-left { top: -50px; left: -50px; }
.countdown-decoration.top-right { top: -50px; right: -50px; }
.countdown-decoration.bottom-left { bottom: -50px; left: -50px; }
.countdown-decoration.bottom-right { bottom: -50px; right: -50px; }

.countdown-glow {
    position: absolute;
    top: 20%;
    left: 30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,204,0,0.1), transparent);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.countdown-card h2 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF, var(--gold), #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.countdown-date {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.15);
}

.countdown-date i { color: var(--gold); }

/* ========== COUNTDOWN WRAPPER - FLEX ROW ========== */
.countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.countdown-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 20px 28px;
    min-width: 100px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.countdown-item:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,204,0,0.3);
}

.countdown-icon {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.countdown-number {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
    display: block;
    line-height: 1;
    background: linear-gradient(135deg, #FFFFFF, var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    animation: pulse 1.5s infinite;
}

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

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.7;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.countdown-separator {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.countdown-separator .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.8;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.countdown-progress {
    margin: 30px 0 35px;
    position: relative;
    z-index: 1;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.7rem;
    opacity: 0.7;
    color: rgba(255,255,255,0.8);
}

.progress-bar-container {
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    height: 8px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
    width: 0%;
    height: 100%;
    border-radius: 30px;
    transition: width 0.5s ease;
    animation: shimmer 2s infinite;
    background-size: 200% 100%;
}

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

.countdown-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-top: 10px;
}

.btn-block {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-block.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--gray-800);
    box-shadow: 0 5px 20px rgba(255,204,0,0.3);
}

.btn-block.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,204,0,0.4);
}

.btn-outline-white {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
    border-color: var(--gold);
}

/* ========== RESPONSIVE COUNTDOWN UNTUK HP - TETAP RAPI ========== */
@media (max-width: 768px) {
    .countdown-card {
        padding: 30px 20px;
    }
    
    .countdown-wrapper {
        gap: 8px;
    }
    
    .countdown-item {
        padding: 10px 12px;
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 1.2rem;
    }
    
    .countdown-icon {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .countdown-separator {
        display: none;
    }
    
    .countdown-date {
        padding: 5px 14px;
        font-size: 0.7rem;
        margin-bottom: 25px;
        gap: 6px;
    }
    
    .countdown-date i {
        font-size: 0.7rem;
    }
    
    .progress-label {
        font-size: 0.6rem;
    }
    
    .btn-block, .btn-outline-white {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 550px) {
    .countdown-wrapper {
        gap: 6px;
    }
    
    .countdown-item {
        padding: 8px 10px;
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 1rem;
    }
    
    .countdown-icon {
        font-size: 0.8rem;
    }
    
    .countdown-label {
        font-size: 0.5rem;
    }
}

@media (max-width: 480px) {
    .countdown-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-block, .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
}

/* ========== QUICK INFO ========== */
.quick-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.quick-item {
    background: white;
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.quick-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.quick-item i {
    font-size: 2rem;
    color: var(--blue);
}

.quick-item strong {
    font-size: 1.2rem;
    display: block;
}

.quick-item span {
    font-size: 0.7rem;
    color: var(--gray-500);
}

/* ========== HOSTS ========== */
.hosts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.host-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.host-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.host-flag img {
    width: 100px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.host-card h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.host-card p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.host-detail {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.host-detail span {
    font-size: 0.7rem;
    color: var(--gray-600);
}

/* ========== STADIUMS ========== */
.stadiums {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stadium-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stadium-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stadium-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.stadium-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.stadium-cap {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
}

.stadium-card h3 {
    padding: 16px 16px 4px;
    font-size: 1rem;
}

.stadium-card p {
    padding: 0 16px 16px;
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ========== FACTS GRID ========== */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.fact-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.fact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.fact-card i {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 12px;
    display: block;
}

.fact-num {
    font-size: 1.5rem;
    font-weight: 800;
}

.fact-label {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
}

.fact-desc {
    font-size: 0.65rem;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ========== NEWS PREVIEW ========== */
.news-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.preview-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.preview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.preview-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.preview-card .content {
    padding: 16px;
}

.preview-card .tag {
    display: inline-block;
    background: var(--blue);
    color: white;
    font-size: 0.6rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.preview-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.preview-card p {
    font-size: 0.75rem;
    color: var(--gray-500);
}

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

/* ========== CTA ========== */
.cta-box {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    color: white;
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--blue);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

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

/* ========== HERO BADGE BESAR ========== */
.hero-badge-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    padding: 16px 40px;
    border-radius: 60px;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0,102,204,0.3);
    border: 2px solid rgba(255,255,255,0.2);
    text-transform: uppercase;
}

.hero-badge-large i {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.berita-hero, .social-hero {
    padding: 40px 0 30px;
}

.hero-description {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== FILTER ========== */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter {
    background: var(--gray-200);
    border: none;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter:hover, .filter.active {
    background: var(--blue);
    color: white;
}

.news-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.news-stats span {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.news-stats i {
    margin-right: 6px;
    color: var(--blue);
}

/* ========== NEWS GRID ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.news-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-tag {
    display: inline-block;
    background: var(--blue);
    color: white;
    font-size: 0.65rem;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.news-date {
    font-size: 0.7rem;
    color: var(--gray-500);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.news-card p {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.5;
}

.read-more {
    color: var(--blue);
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 10px;
}

.load-more {
    text-align: center;
}

.btn-loadmore {
    background: transparent;
    border: 2px solid var(--blue);
    color: var(--blue);
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-loadmore:hover {
    background: var(--blue);
    color: white;
}

/* ========== FEATURED SOCIAL ========== */
.featured-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.featured {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gray-200);
    padding: 16px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.featured:hover {
    transform: translateX(6px);
    background: #E8EEF4;
}

.featured i:first-child {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.3rem;
}

.featured div {
    flex: 1;
}

.featured strong {
    display: block;
    color: var(--gray-800);
}

.featured span {
    font-size: 0.7rem;
    color: var(--gray-500);
}

.featured i:last-child {
    color: var(--gray-400);
    transition: var(--transition);
}

.featured:hover i:last-child {
    transform: translateX(4px);
    color: var(--blue);
}

/* Warna icon untuk featured section */
.featured.fb i:first-child { color: #1877F2; background: rgba(24,119,242,0.1); }
.featured.ig i:first-child { color: #E4405F; background: rgba(228,64,95,0.1); }
.featured.tt i:first-child { color: #000000; background: rgba(0,0,0,0.05); }
.featured.tg i:first-child { color: #0088CC; background: rgba(0,136,204,0.1); }
.featured.dc i:first-child { color: #5865F2; background: rgba(88,101,242,0.1); }
.featured.yt i:first-child { color: #FF0000; background: rgba(255,0,0,0.1); }

/* ========== SOCIAL GRID ========== */
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.social-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* SOCIAL ICON - AGAR TERLIHAT DENGAN JELAS */
.social-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 16px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

/* Warna background untuk setiap platform */
.social-icon.fb { background: #1877F2; }
.social-icon.ig { background: linear-gradient(45deg, #F09433, #E6683C, #DC2743); }
.social-icon.tt { background: #000000; }
.social-icon.dc { background: #5865F2; }
.social-icon.yt { background: #FF0000; }
.social-icon.tg { background: #0088CC; }

.social-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.social-card p {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.social-btn {
    display: inline-block;
    background: var(--gray-200);
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--gray-800);
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--blue);
    color: white;
}

/* ========== COMMUNITY STATS ========== */
.community-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: linear-gradient(135deg, var(--dark), #142040);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    margin-bottom: 48px;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ========== JOIN COMMUNITY ========== */
.join-community {
    text-align: center;
    background: white;
    border-radius: var(--radius);
    padding: 40px 24px;
    box-shadow: var(--shadow);
}

.join-community h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.join-community p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

.join-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== FOOTER ========== */
footer {
    background: var(--dark);
    color: white;
    padding: 48px 0 24px;
    margin-top: 60px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-circle {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), #FF9900);
}

.footer-logo span {
    font-weight: 800;
    font-size: 1.2rem;
}

.footer-logo span span {
    background: linear-gradient(135deg, var(--blue), var(--red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-brand p {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.6;
}

.newsletter h4 {
    font-size: 0.9rem;
    margin: 16px 0 12px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: none;
    border-radius: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.newsletter-form button {
    background: var(--blue);
    border: none;
    padding: 0 16px;
    border-radius: 40px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--blue-dark);
}

.footer-links h4, .footer-social h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--gold);
}

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

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

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

/* FOOTER SOCIAL ICONS */
.footer-social .social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-social .social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social .social-icons a:hover {
    transform: translateY(-3px);
}

.footer-social .social-icons a.fb:hover { background: #1877F2; }
.footer-social .social-icons a.tt:hover { background: #000000; }
.footer-social .social-icons a.ig:hover { background: #E4405F; }
.footer-social .social-icons a.dc:hover { background: #5865F2; }
.footer-social .social-icons a.yt:hover { background: #FF0000; }
.footer-social .social-icons a.tg:hover { background: #0088CC; }

.app-download h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.app-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.app-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 40px;
    text-decoration: none;
    color: white;
    font-size: 0.7rem;
    transition: var(--transition);
}

.app-buttons a:hover {
    background: var(--blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    font-size: 0.7rem;
    opacity: 0.5;
}

.payment-methods {
    display: flex;
    gap: 12px;
}

.payment-methods i {
    font-size: 1.2rem;
    opacity: 0.5;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--blue);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-lg);
    z-index: 90;
}

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

.back-to-top:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
}

/* ========== RESPONSIVE UMUM ========== */
@media (max-width: 1200px) {
    .stadiums { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .facts-grid { grid-template-columns: repeat(3, 1fr); }
    .quick-info { grid-template-columns: repeat(2, 1fr); }
    .featured-list { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
    .hosts, .news-grid, .social-grid, .news-preview {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    
    .header-links, .header-buttons { display: none; }
    .mobile-btn { display: block; }
    
    .hosts, .stadiums, .news-grid, .social-grid, .news-preview, .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-info { grid-template-columns: 1fr; }
    .community-stats { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { justify-content: center; }
    .footer-social .social-icons { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    
    .hero { padding: 40px 0; }
    .hero-badge-large { padding: 10px 20px; font-size: 0.9rem; gap: 8px; }
    .hero-badge-large i { font-size: 0.9rem; }
    
    .filter-bar {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 8px;
        padding-bottom: 8px;
    }
    .filter { flex-shrink: 0; padding: 6px 16px; font-size: 0.75rem; }
    
    .social-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .social-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 16px;
        gap: 16px;
    }
    .social-card .social-icon {
        width: 55px;
        height: 55px;
        margin: 0;
        flex-shrink: 0;
    }
    .social-card .social-icon i { font-size: 1.5rem; }
    .social-card h4 { font-size: 1rem; margin-bottom: 4px; text-align: left; }
    .social-card p { font-size: 0.7rem; margin-bottom: 0; text-align: left; }
    .social-btn { margin-left: auto; flex-shrink: 0; padding: 6px 14px; font-size: 0.7rem; }
    
    .community-stats { padding: 24px 16px; }
    .stat-num { font-size: 1.5rem; }
    .stat-label { font-size: 0.7rem; }
}

@media (max-width: 480px) {
    .community-stats { grid-template-columns: 1fr; }
    .news-stats { flex-direction: column; align-items: flex-start; gap: 6px; }
    
    .social-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .social-card .social-icon { margin: 0 auto 12px; }
    .social-card h4 { text-align: center; }
    .social-card p { text-align: center; margin-bottom: 12px; }
    .social-btn { margin: 0 auto; }
    
    .hero-buttons, .cta-buttons, .join-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary, .btn-outline, .btn-white { width: 100%; justify-content: center; }
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-200); border-radius: 10px; }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-dark); }
