/* ═══════════════════════════════════════════
   GLOBAL & RESET
═══════════════════════════════════════════ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    /* Gradient mimicking the design's lighting */
    background: linear-gradient(135deg, #1c1132 0%, #4a0c2b 50%, #6e0f2d 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 50px;
    position: relative; /* Base for all absolute children */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ═══════════════════════════════════════════
   WATERMARK (POSITION: ABSOLUTE)
═══════════════════════════════════════════ */
.bg-watermark {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 15rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02); /* Extremely faint */
    z-index: 0;
    letter-spacing: 20px;
    pointer-events: none;
}

/* ═══════════════════════════════════════════
   HEADER (DISPLAY: FLEX)
═══════════════════════════════════════════ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    font-weight: 500;
}

/* Active line indicator */
.nav-links a.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    margin-top: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 6px 0;
}

/* ═══════════════════════════════════════════
   HERO SECTION (POSITION: RELATIVE)
═══════════════════════════════════════════ */
.hero-section {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    margin-top: 50px;
    z-index: 2;
}

/* --- Left Content --- */
.hero-content {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    z-index: 5;
}

.main-title-img {
    width: 100%;
    max-width: 450px;
    margin-bottom: 20px;
}

.description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* --- Buttons --- */
.button-group {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 30px;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.primary-btn {
    background: linear-gradient(90deg, #d81e5b, #e03a4c);
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(216, 30, 91, 0.3);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
}

/* --- Scroll Indicator (Absolute) --- */
.scroll-indicator {
    position: absolute;
    left: 55%; /* Positions it right between text and character */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 5;
}

.scroll-indicator span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #d81e5b, transparent);
}

/* --- Main Character (Absolute) --- */
.hero-character {
    position: absolute;
    right: 5%;
    bottom: -150px; /* Allows character to overlap the bottom bar */
    height: 120%;
    z-index: 3;
}

.hero-character img {
    height: 100%;
    object-fit: contain;
    /* Simulate the dark studio lighting */
    filter: drop-shadow(-20px 20px 30px rgba(0,0,0,0.6));
}

/* --- Social Sidebar (Absolute) --- */
.social-sidebar {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 5;
}

.social-sidebar a {
    color: #e03a4c;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.social-sidebar a:hover {
    opacity: 0.7;
}

/* ═══════════════════════════════════════════
   BOTTOM THUMBNAILS (FLEX & RELATIVE/ABSOLUTE)
═══════════════════════════════════════════ */
.thumbnail-section {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: rgba(30, 10, 25, 0.6); /* Frosted glass look */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    /* margin-top: auto;  */
    position: relative;
    z-index: 10; /* Ensures it sits above the background */
}

/* The card is relative so the play icon can be absolute inside it */
.thumb-card {
    position: relative;
    flex: 1;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid black;


}

.thumb-card:hover {
    transform: translateY(-5px);
}

.thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.thumb-card:hover img {
    opacity: 1;
}

/* Position Absolute inside Relative Card */
.play-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    color: white;
}
