* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000;
    color: #e5e5e5;
    line-height: 1.7;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: radial-gradient(circle at top, #1a0000, #000 60%);
    display: flex;
    flex-direction: column;
    animation: fadeIn 1.8s ease;
}

nav {
    padding: 25px 60px;
}

.logo {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #e50914;
    text-transform: lowercase;
}

/* HERO CONTENT */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h2 {
    font-size: 52px;
    font-weight: 700;
    animation: slideUp 1.2s ease forwards;
}

.hero-content h2 span {
    color: #e50914;
    text-shadow: 0 0 20px rgba(229, 9, 20, 0.6);
}

.hero-content p {
    margin-top: 15px;
    font-size: 22px;
    opacity: 0.85;
    animation: fadeIn 2.2s ease;
}

/* BUTTON */
.btn {
    margin-top: 35px;
    padding: 14px 38px;
    background: #e50914;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.35s ease;
    box-shadow: 0 0 25px rgba(229, 9, 20, 0.4);
}

.btn:hover {
    background: #ff1e28;
    transform: scale(1.12);
    box-shadow: 0 0 45px rgba(229, 9, 20, 0.8);
}

/* ===== SECTIONS ===== */
.section {
    padding: 90px 15%;
    position: relative;
}

.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, #e50914, transparent);
    transform: translateX(-50%);
}

.section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #e50914;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* GLASS EFFECT */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px);
    border-radius: 25px;
    border: 1px solid rgba(229, 9, 20, 0.25);
    animation: glowPulse 6s infinite alternate;
}

/* CARD */
.card {
    background: rgba(255, 255, 255, 0.04);
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid #e50914;
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-14px);
    box-shadow: 0 0 40px rgba(229, 9, 20, 0.35);
}

/* ===== SKILLS ===== */
.skills span {
    display: inline-block;
    margin: 12px;
    padding: 12px 26px;
    border-radius: 30px;
    background: transparent;
    border: 2px solid #e50914;
    color: #e50914;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.35s ease;
}

.skills span:hover {
    background: #e50914;
    color: #fff;
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.6);
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 25px;
    background: #000;
    border-top: 1px solid rgba(229, 9, 20, 0.3);
    font-size: 14px;
    letter-spacing: 1px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes glowPulse {
    from {
        box-shadow: 0 0 20px rgba(229, 9, 20, 0.15);
    }
    to {
        box-shadow: 0 0 45px rgba(229, 9, 20, 0.4);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-content h2 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section {
        padding: 70px 8%;
    }
}
