:root {
    --color-bg: #111111;
    --color-text: #FFFFFF;
    --color-brand: #FF10F0;
    /* Neon Pink */
    --color-brand-hover: #D90DB0;
    --color-surface: #1A1A1A;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(to right, #111, var(--color-brand), #111) 1;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    position: relative;
    color: #eee;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-brand);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-brand);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.contact-btn {
    background: transparent;
    border: 1px solid var(--color-brand);
    color: var(--color-brand);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--color-brand);
    color: white;
}

/* Hero */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    max-width: 12ch;
}

.hero p {
    margin-top: 2rem;
    font-size: 1.25rem;
    color: #888;
    max-width: 600px;
}

/* Sections */
section {
    padding: 4rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #1A1A1A;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.review-source {
    color: var(--color-brand);
    font-weight: bold;
}

.review-stars {
    color: #FFD700;
}

/* Wall of Shame */
.shame-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    border-bottom: 4px solid var(--color-brand);
    display: inline-block;
}

.shame-article {
    border-left: 4px solid red;
    padding-left: 2rem;
    margin-top: 2rem;
}

.shame-tag {
    background: red;
    color: white;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Comments */
.comments-container {
    max-width: 800px;
    margin: 0 auto;
}

.comment-form {
    margin-bottom: 3rem;
    background: #1A1A1A;
    padding: 1.5rem;
    border-radius: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    background: #333;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.submit-btn {
    background: var(--color-brand);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: bold;
}

.comment-item {
    padding: 1rem;
    border-bottom: 1px solid #333;
}

.comment-name {
    font-weight: bold;
    color: var(--color-brand);
    margin-bottom: 0.25rem;
}

.comment-text {
    color: #ccc;
}

footer {
    padding: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.875rem;
}

/* Leaked Email Chain Styles (Themed) */
.leak-container {
    max-width: 900px;
    margin: 2rem auto;
    background: #1A1A1A;
    /* Dark Surface */
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    color: #ddd;
    font-family: var(--font-main);
    line-height: 1.6;
}

.leak-header {
    background: linear-gradient(135deg, #000 0%, #111 100%);
    border-bottom: 2px solid var(--color-brand);
    color: white;
    padding: 2.5rem;
    text-align: center;
}

.leak-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-brand);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.leak-header h2 {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    color: #fff;
}

.case-reference {
    background: var(--color-brand);
    color: #000;
    padding: 0.75rem;
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.leak-content {
    padding: 2rem;
}

.leak-section-title {
    color: var(--color-brand);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333;
}

.leak-section-title:first-child {
    margin-top: 0;
}

.redaction-key {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.redaction-key .item {
    margin-bottom: 0.5rem;
    color: #aaa;
}

.redaction-key .label {
    font-weight: 700;
    color: var(--color-brand);
}

.email {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.email:hover {
    border-color: var(--color-brand);
    box-shadow: 0 0 15px rgba(255, 16, 240, 0.1);
}

.email-header {
    background: #000;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #333;
}

.email-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.email-meta {
    display: grid;
    gap: 0.25rem;
}

.email-meta-item {
    font-size: 0.9rem;
    color: #888;
}

.email-meta-item .label {
    font-weight: 600;
    color: var(--color-brand);
    display: inline-block;
    min-width: 70px;
}

.email-body {
    padding: 1.5rem;
    color: #ddd;
}

.email-body p {
    margin-bottom: 1rem;
}

.email-body p:last-child {
    margin-bottom: 0;
}

.questionnaire {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.questionnaire-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #333;
}

.questionnaire-date {
    font-weight: 600;
    color: #fff;
}

.questionnaire-from {
    font-size: 0.9rem;
    color: #888;
}

.qa-item {
    margin-bottom: 1.25rem;
}

.qa-item:last-child {
    margin-bottom: 0;
}

.question {
    font-weight: 600;
    color: var(--color-brand);
    margin-bottom: 0.5rem;
}

.answer {
    padding-left: 1rem;
    border-left: 3px solid #333;
    color: #ccc;
}

.answer.emphasis {
    font-style: italic;
    color: #fff;
}

.legal-note {
    background: #220022;
    /* Very dark pink tint */
    border-left: 4px solid var(--color-brand);
    padding: 1rem 1.25rem;
    margin: 1rem 0;
    border-radius: 0 4px 4px 0;
}

.legal-note-title {
    font-weight: 600;
    color: var(--color-brand);
    margin-bottom: 0.5rem;
}

.protection-list {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
}

.protection-list li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.leak-footer {
    background: #000;
    color: #666;
    text-align: center;
    padding: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-top: 1px solid #333;
}

.leak-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #333, transparent);
    margin: 2rem 0;
}

/* Chat Interface Styles */
.chat-interface {
    background: #000;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    max-width: 85%;
    padding: 1rem;
    border-radius: 12px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chat-message.received {
    align-self: flex-start;
    background: #1a1a1a;
    border-bottom-left-radius: 2px;
    color: #ccc;
    border: 1px solid #333;
}

.chat-message.sent {
    align-self: flex-end;
    background: rgba(255, 16, 240, 0.1);
    border-bottom-right-radius: 2px;
    color: #fff;
    border: 1px solid rgba(255, 16, 240, 0.3);
}

.chat-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.8;
}

.chat-message.received .chat-meta {
    color: #888;
}

.chat-message.sent .chat-meta {
    color: var(--color-brand);
}

.chat-message.hr {
    align-self: center;
    background: #0d1a26;
    /* Dark blue/slate tint */
    color: #b3d9ff;
    border: 1px solid #1a334d;
    border-radius: 12px;
    width: 90%;
    /* Slightly wider or different to stand out */
}

.chat-message.hr .chat-meta {
    color: #4da6ff;
}

.players-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    background: rgba(255, 16, 240, 0.05);
    border: 1px solid rgba(255, 16, 240, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.player-card {
    border-left: 2px solid var(--color-brand);
    padding-left: 0.75rem;
}

.player-name {
    color: var(--color-brand);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}

.player-desc {
    font-size: 0.85rem;
    color: #aaa;
}