* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* BODY */
body{
    background: linear-gradient(135deg, #050505, #0b0b0b, #111111);
    color: #fff;
    overflow-x: hidden;
}

/* HEADER */
.header {
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(14px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,0,60,0.15);
    z-index: 99;
}

.logo {
    font-size: 28px;
    color: #ff003c;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg,#ff003c,#ff2b59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar a {
    display: inline-block;
    font-size: 18px;
    color: #9a9a9a;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: #ff003c;
}

/* HOME SECTION */
.home {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 10%;
}

.home-img img {
    max-width: 450px;
    opacity: 0;
    animation: zoomIn .7s ease forwards, floatImage 4s ease-in-out infinite;
}

.home-content {
    max-width: 600px;
}

.home-content h3 {
    font-size: 32px;
    font-weight: 700;
    opacity: 0;
    animation: slideBottom .5s ease forwards;
}

.home-content h3 span {
    color: #ff003c;
}

.home-content h1 {
    font-size: 56px;
    font-weight: 900;
    margin: -3px 0 20px;
    opacity: 0;
    animation: slideLeft .5s ease forwards;
}

.home-content p {
    font-size: 16px;
    opacity: 0;
    animation: slideRight .5s ease forwards;
    color: #9a9a9a;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff003c, #ff2b59);
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    margin-top: 20px;
    box-shadow: 0 0 15px rgba(255,0,60,0.3);
    transition: 0.3s;
    opacity: 0;
    animation: slideTop .5s ease forwards;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(255,0,60,0.5);
}

/* SOCIAL MEDIA ICONS */
.social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid #ff003c;
    border-radius: 50%;
    font-size: 20px;
    color: #ff003c;
    text-decoration: none;
    margin: 30px 15px 30px 0;
    transition: 0.3s;
}

.social-media a:hover {
    background: #ff003c;
    color: #111;
    box-shadow: 0 0 20px #ff003c;
}

/* KEYFRAMES */
@keyframes slideRight {
    0% { transform: translateX(-100px); opacity:0; }
    100% { transform: translateX(0); opacity:1; }
}
@keyframes slideLeft {
    0% { transform: translateX(100px); opacity:0; }
    100% { transform: translateX(0); opacity:1; }
}
@keyframes slideTop {
    0% { transform: translateY(100px); opacity:0; }
    100% { transform: translateY(0); opacity:1; }
}
@keyframes slideBottom {
    0% { transform: translateY(-100px); opacity:0; }
    100% { transform: translateY(0); opacity:1; }
}
@keyframes zoomIn {
    0% { transform: scale(0); opacity:0; }
    100% { transform: scale(1); opacity:1; }
}
@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* RADIAL BACKGROUND GLOW */
body::before {
    content:'';
    position: fixed;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,0,60,0.15), transparent 70%);
    filter: blur(200px);
    z-index: -1;
}