/* --- RESET & VARIABLES --- */
:root {
    --bg-dark: #050505;
    --bg-card: #121212;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --accent: #ff3b3b; /* Death Red */
    --accent-glow: rgba(255, 59, 59, 0.4);
    --font-head: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-dark { background-color: #0a0a0a; padding: 100px 0; }
.section-black { background-color: #000000; padding: 100px 0; }

.section-title {
    font-family: var(--font-head);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 15px 30px;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.2rem;
}

.logo img {
    height: 30px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: white;
}

.btn-primary {
    background: white;
    color: black !important;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('images/cat.png'); /* Your background */
    background-size: cover;
    background-position: center;
    text-align: center;
}

/* Dark overlay to make text pop */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), #050505);
}

.content-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(3rem, 8vw, 6rem); /* Responsive font size */
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 24px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.social-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px var(--accent-glow);
}

/* --- ABOUT SECTION --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-block .tag {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: block;
}

.text-block h2 {
    font-family: var(--font-head);
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.text-block p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.masonry-grid img {
    border-radius: 8px;
    width: 100%;
    height: 150px; /* Fixed height for uniformity */
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.3s;
    filter: grayscale(100%);
}

.masonry-grid img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
    z-index: 2;
}

/* --- DEATHNOMICS CARDS --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.glass-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.glass-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.glass-card h3 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.glass-card p {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.highlight {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(255, 59, 59, 0.1);
}

.highlight h3 {
    color: var(--accent);
}

/* --- HOW TO BUY --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.step-item {
    background: #0f0f0f;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: 0.3s;
}

.step-item:hover {
    background: #1a1a1a;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    font-family: var(--font-head);
    z-index: 1;
}

.step-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    border: 2px solid #333;
}

.step-item h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* --- FOOTER --- */
footer {
    padding: 40px;
    text-align: center;
    color: #444;
    font-size: 0.9rem;
    border-top: 1px solid #111;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .navbar {
        width: 100%;
        top: 0;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links {
        display: none; /* Hide links on mobile for simplicity */
    }

    .split-layout {
        grid-template-columns: 1fr; /* Stack layout on mobile */
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}