* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    color: white;
    overflow-x: hidden;
}

/* ================= LOADER ================= */
#loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease;
}

.loader-text {
    font-size: 50px;
    letter-spacing: 8px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* ================= BACKGROUND ================= */
.background {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url('background.jpg') no-repeat center center/cover;
    z-index: -3;
    transform: scale(1.1);
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: -2;
}

/* ================= FILM GRAIN ================= */
.grain {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    opacity: 0.05;
    background: url("https://grainy-gradients.vercel.app/noise.svg");
}

/* ================= CUSTOM CURSOR ================= */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #ff004c;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: 0.1s;
    z-index: 999;
}

/* ================= HERO ================= */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.profile-img {
    width: 160px;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: 0.5s;
}

.profile-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.title {
    font-size: 55px;
    letter-spacing: 6px;
}

.subtitle {
    color: #ff004c;
    margin: 15px 0 25px;
    font-size: 20px;
    min-height: 30px;
}

.btn {
    padding: 14px 30px;
    background: #ff004c;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.4s;
}

.btn:hover {
    background: white;
    color: black;
}

/* ================= SECTIONS ================= */
section {
    padding: 120px 10%;
    text-align: center;
}

h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

/* ================= REEL ================= */
.reel-card {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 15px;
    transition: 0.5s;
}

.reel-img {
    width: 400px;
    border-radius: 15px;
    transition: 0.5s;
}

.reel-card:hover .reel-img {
    transform: scale(1.1);
    filter: brightness(0.4);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff004c;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    opacity: 0;
    transition: 0.5s;
}

.reel-card:hover .play-btn {
    opacity: 1;
}

/* ================= SCROLL REVEAL ================= */
.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: 1.2s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= FOOTER ================= */
footer {
    text-align: center;
    padding: 25px;
    background: #000;
    font-size: 14px;
}

/* ================= KEYFRAMES ================= */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
