/*
Theme Name: ViralXHub Core
Author: Developer
Description: Custom Coded 2026 Entertainment Hub
Version: 2.0
*/

:root {
    --gold: #f1c40f;
    --bg: #050505;
    --card: #121212;
    --text: #ffffff;
    --border: #222222;
}

body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }

header { padding: 80px 20px; text-align: center; border-bottom: 1px solid var(--border); background: linear-gradient(to bottom, #111, #050505); }
header h1 { font-size: 4rem; font-weight: 900; letter-spacing: 12px; margin: 0; text-transform: uppercase; }
header h1 span { color: var(--gold); }
header p { color: #666; letter-spacing: 4px; font-size: 0.9rem; margin-top: 10px; }

.container { max-width: 1300px; margin: auto; padding: 40px 20px; }

/* Grid & Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 35px; }
.card { background: var(--card); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.card:hover { border-color: var(--gold); transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.6); }

/* Video Responsive */
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; pointer-events: none; }

.card-content { padding: 25px; }
.card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cat-tag { color: var(--gold); text-transform: uppercase; font-size: 0.7rem; font-weight: bold; letter-spacing: 1px; }
.rating { background: var(--gold); color: #000; padding: 3px 10px; border-radius: 6px; font-weight: 900; font-size: 0.85rem; }

.card h2 { font-size: 1.4rem; margin: 0 0 15px 0; font-weight: 700; }
.btn-row { display: flex; gap: 12px; }
.vxh-btn { flex: 1; padding: 12px; text-align: center; border-radius: 8px; text-decoration: none; font-weight: bold; font-size: 0.8rem; transition: 0.3s; }
.btn-gold { background: var(--gold); color: #000; }
.btn-dark { background: transparent; border: 1px solid var(--border); color: #fff; }
.vxh-btn:hover { opacity: 0.8; }

/* Single View */
.single-review { max-width: 900px; margin: auto; padding: 60px 20px; }
.single-video { border-radius: 20px; overflow: hidden; border: 2px solid var(--border); margin: 30px 0; }
.single-video .video-container iframe { pointer-events: auto; }
.article-text { font-size: 1.2rem; line-height: 1.8; color: #ddd; }

/* Navigation Menu */
.vxh-nav { list-style: none; padding: 0; margin: 0; display: flex; justify-content: center; gap: 30px; }
.vxh-nav li a { color: #fff; text-decoration: none; font-weight: bold; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; }
.vxh-nav li a:hover { color: var(--gold); }