* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #cf152b;
    --primary-glow: rgba(207, 21, 43, 0.35);
    --bg-dark: #0a0a0c;
    --bg-card: #14141a;
    --text-light: #ffffff;
    --text-gray: #b5b5bc;
}

/* Background image setup (reaper.jpg saaf dikhegi ab) */
body { 
    background: linear-gradient(rgba(10, 10, 12, 0.4), rgba(10, 10, 12, 0.6)), url('reaper.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-light); 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 110px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(20, 20, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary-glow);
}

.hero-section {
    text-align: center;
    padding: 50px 40px;
    max-width: 850px;
    margin: auto;
    background: rgba(10, 10, 12, 0.65); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(207, 21, 43, 0.15);
}

.hero-tagline {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 25px;
    display: inline-block;
    background: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.hero-section h1 {
    font-size: 3.8rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-shadow: 3px 3px 0px #000, -1px -1px 0px #000, 1px -1px 0px #000, -1px 1px 0px #000, 0px 8px 20px rgba(0,0,0,0.9);
}

.hero-section h1 span {
    color: var(--primary);
    display: block;
    font-size: 4.8rem;
    letter-spacing: 3px;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(207, 21, 43, 0.6), 4px 4px 0px #000;
}

.hero-section p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 1px;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background: #b01021;
    box-shadow: 0 6px 25px rgba(207, 21, 43, 0.7);
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(20, 20, 26, 0.8);
    border: 2px solid #2a2a35;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(207, 21, 43, 0.15);
    box-shadow: 0 4px 15px rgba(207, 21, 43, 0.2);
    transform: translateY(-3px);
}

footer {
    background: #050507;
    padding: 30px;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    border-top: 1px solid #14141a;
    width: 100%;
    margin-top: auto;
}

@media (max-width: 900px) {
    nav { display: none; }
    .hero-section h1 { font-size: 2.6rem; }
    .hero-section h1 span { font-size: 3rem; }
    .hero-section p { font-size: 1.1rem; }
    body { padding-top: 90px; }
}