/* Design System */
:root {
    --color-bg: #000000;
    --color-primary: #FF007D;
    --color-secondary: #332D2D;
    --color-text: #FFFFFF;
    --color-text-muted: #888888;
    --font-main: 'Roboto', sans-serif;
    --spacing-unit: 1rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

/* Header */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: none;
    /* The bar will be the border */
    padding: 1rem 0 0 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg);
    overflow: hidden;
}

.hero-image {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    width: 50%;
    padding: 4rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    line-height: 1.1;
}

.hero p {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #d40068;
}

/* Footer */
footer {
    background: var(--color-secondary);
    padding: 4rem 0;
    margin-top: 4rem;
    border-top: 1px solid #444;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.next-issue {
    margin-top: 3rem;
    background-color: var(--color-primary);
    color: white;
    padding: 1.5rem;
    max-width: 600px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.next-issue h3 {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    line-height: 1.3;
}

.next-issue p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 0;
}

.disclaimer-bar {
    background-color: var(--color-primary);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.7rem;
    /* Slightly smaller for long text */
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    letter-spacing: 0.05em;
}