/* --- Basic Reset & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212; /* Fallback color */
    color: #ffffff;
    line-height: 1.6;
    /* SITE BACKGROUND IMAGE - REPLACE URL BELOW WITH YOUR OWN */
    background-image: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Makes the background stay still while scrolling */
    min-height: 100vh;
}

/* Dark overlay so text pops against the background image */
.overlay {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.98));
    min-height: 100vh;
    width: 100%;
}

/* --- Color Variables (Change accent color here) --- */
:root {
    --primary-color: #00ff88; /* A Razer-like bright green */
    --dark-card: #1e1e1e;
    --text-gray: #b3b3b3;
}

.accent-text {
    color: var(--primary-color);
}

/* --- Header & Nav --- */
header {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px); /* Slight blur effect behind nav */
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

/* --- Hero Section --- */
.hero-section {
    padding: 60px 5%;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-content p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.video-wrapper-main {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 136, 0.3); /* Subtle colored border */
}

.video-wrapper-main iframe {
    width: 100%;
    height: 100%;
}

/* --- Grid Section --- */
.latest-uploads {
    padding: 60px 5%;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* --- Vlog Cards --- */
.vlog-card {
    background-color: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.vlog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border-color: var(--primary-color);
}

.thumb-container {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.thumb-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the box without stretching */
    transition: transform 0.5s ease;
}

.vlog-card:hover .thumb-container img {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    padding: 3px 8px;
    font-size: 0.8rem;
    border-radius: 4px;
    font-weight: 600;
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.card-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-gray);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    header { flex-direction: column; gap: 20px; }
    .nav-links { gap: 15px; }
}