:root {
    --bg-dark: #0f0f0f;
    --bg-card: #1a1a1a;
    --primary: #c92a2a; /* PRS Red */
    --text: #ffffff;
    --text-muted: #888;
}

/* --- 1. GLOBAL RESET (Fixes Horizontal Scrollbars) --- */
* {
    box-sizing: border-box; /* This keeps padding inside the width */
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Forces no side-scrolling */
    background-color: var(--bg-dark);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #000;
    border-bottom: 1px solid #222;
}

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: white;
}

.btn-nav {
    padding: 8px 18px;
    border-radius: 4px;
    background: #1a1a1a;
    border: 1px solid #333;
}

.btn-nav:hover {
    background: #222;
    border-color: white;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 120px 20px;
    background: radial-gradient(circle at center, #1a0505 0%, #0f0f0f 70%);
}

.btn-hero {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(201, 42, 42, 0.4);
    transition: transform 0.2s;
}

.btn-hero:hover {
    transform: scale(1.05);
    background: #e03131;
}

/* Form Containers */
.form-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.input-dark {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #252525;
    border: 1px solid #444;
    color: white;
    border-radius: 6px;
    box-sizing: border-box;
}

.input-dark:focus {
    border-color: var(--primary);
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #3b82f6; /* Blue for submit actions */
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

/* Login Tabs */
.login-header {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
}
.tab-btn {
    flex: 1;
    padding: 15px;
    background: transparent;
    border: none;
    color: #888;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}
.tab-btn.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
    background: linear-gradient(to top, #2a0a0a, transparent);
}

/* --- LOGIN CARD SPECIFIC STYLES --- */
.login-wrapper {
    background-color: #050505;
    background-image: radial-gradient(circle at center, #1a0505 0%, #000 70%);
    min-height: 100vh; /* Changed from height:100vh to min-height */
    display: flex;
    flex-direction: column; /* Stacks items nicely */
    align-items: center;
    /* Removed overflow: hidden to allow scrolling */
}

.login-card {
    width: 450px;
    background: #0a0a0a;
    border: 1px solid #c92a2a; /* Red Border */
    border-radius: 4px; /* Sharp corners like screenshot */
    box-shadow: 0 0 20px rgba(201, 42, 42, 0.2);
    position: relative;
    padding: 0;
    overflow: hidden;
}

/* Red corners accent */
.login-card::before, .login-card::after {
    content: ""; position: absolute; width: 10px; height: 10px;
    border: 1px solid #c92a2a; transition: 0.3s;
}
.login-card::before { top: 5px; left: 5px; border-right: none; border-bottom: none; }
.login-card::after { bottom: 5px; right: 5px; border-left: none; border-top: none; }

.logo-circle {
    width: 80px; height: 80px;
    margin: 40px auto 20px;
    border: 2px solid #c92a2a;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 15px #c92a2a;
    background: #000;
}
.logo-circle img { width: 60px; }

.login-title {
    text-align: center; color: #c92a2a;
    font-size: 1.8rem; font-weight: bold; text-transform: uppercase;
    margin-bottom: 5px;
}
.login-subtitle {
    text-align: center; color: #666; font-size: 0.9rem; margin-bottom: 30px;
}

/* TABS */
.auth-tabs {
    display: flex; justify-content: center; gap: 30px;
    margin-bottom: 25px; border-bottom: 1px solid #222; padding-bottom: 0;
}
.auth-tab-btn {
    background: none; border: none; color: #666;
    padding-bottom: 10px; cursor: pointer; font-size: 1rem;
    position: relative;
}
.auth-tab-btn.active { color: white; }
.auth-tab-btn.active::after {
    content: ""; position: absolute; bottom: -1px; left: 0; width: 100%; height: 2px; background: #c92a2a;
}

/* Discord Button */
.btn-discord {
    background-color: #c92a2a; /* Custom Red to match theme */
    color: white; width: 100%; padding: 15px;
    border: none; border-radius: 5px; font-weight: bold; font-size: 1rem;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    cursor: pointer; transition: 0.3s;
    text-decoration: none;
}
.btn-discord:hover { background-color: #b01e1e; box-shadow: 0 0 15px rgba(201, 42, 42, 0.4); }

.tab-content { display: none; padding: 0 40px 40px; }
.tab-content.active { display: block; }

/* Use this for Content Pages (Partners, Booking) */
.page-wrapper {
    background-color: #0f0f0f;
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding-top: 80px; /* Space for fixed navbar */
}

/* --- UNIVERSAL CARD GRID SYSTEM (Used for Partners & Explore Us) --- */
.grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 50px;
}

.info-card-interactive {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.info-card-interactive:hover {
    transform: translateY(-5px);
    border-color: #c92a2a; /* Red Glow */
    box-shadow: 0 10px 30px rgba(201, 42, 42, 0.2);
}

.card-badge {
    background: #222; 
    border: 1px solid #444; 
    color: #ccc; 
    padding: 5px 12px; 
    border-radius: 20px; 
    font-size: 0.75rem; 
    text-transform: uppercase;
}

.btn-explore {
    background: transparent;
    border: 1px solid #c92a2a;
    color: #c92a2a;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    transition: 0.2s;
    margin-top: 20px;
    font-weight: bold;
}

.btn-explore:hover {
    background: #c92a2a;
    color: white;
}

.glass-editor-container { 
    background: rgba(10, 10, 10, 0.98); border: 1px solid #f1c40f33; padding: 40px; 
    border-radius: 15px; box-shadow: 0 0 50px #000; 
}
.banner-preview { 
    width: 100%; height: 120px; border-radius: 8px; border: 1px solid #333; 
    background-size: cover; background-position: center; margin-bottom: 10px; 
}
.btn-gold-action { 
    background: #f1c40f; color: #000; border: none; padding: 15px; 
    border-radius: 8px; width: 100%; font-weight: bold; cursor: pointer; 
    text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
}
.btn-gold-action:hover { background: #fff; transform: translateY(-2px); }
.staff-card { 
    background: #000; border: 1px solid #222; padding: 15px; border-radius: 10px; 
    display: flex; align-items: center; gap: 15px; margin-bottom: 10px; 
}
.staff-avatar { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #f1c40f; object-fit: cover; }
.gal-thumb { width: 100px; height: 75px; object-fit: cover; border-radius: 5px; border: 1px solid #333; }