:root {
    --bg-body: #101010;       /* Darker outer background */
    --bg-content: #181818;    /* Slightly lighter wrapper background */
    --card-bg: #222222;       /* Card background */
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent: #ff8a00;
    --accent-hover: #ff8a00;
    --border-radius: 8px;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --max-width: 1200px;
}

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }

/* --- Site Wrapper (Locks page to 1200px) --- */
.site-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;             /* Centers the wrapper */
    background-color: var(--bg-content);
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,0.5); /* Subtle shadow for boxed look */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000; /* Strictly Black Background */
}

.video-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Gradient into black at bottom to blend with content */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 80%, rgba(24,24,24,1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

/* --- Main Content --- */
/* Inner container to keep text from being too wide/unreadable */
.content-container {
    width: 100%;
    max-width: 900px; /* Text stays readable, wrapper stays 1200px */
    margin: 0 auto;
    padding: 40px 20px;
    flex: 1; /* Pushes footer down */
}

.card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    border: 1px solid #333;
}

h2 {
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

h3 {
    color: var(--text-muted);
    margin: 25px 0 15px 0;
    font-size: 1.1rem;
}

p { margin-bottom: 15px; color: var(--text-muted); }

.meta-text {
    font-size: 0.85rem;
    font-style: italic;
    color: #666;
    margin-top: 20px;
}

/* Lists */
.styled-list {
    list-style: none;
    padding-left: 10px;
}

.styled-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.styled-list li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Special Components */
.notice-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 4px;
    border-left: 3px solid var(--accent);
}
.notice-box ul { margin-left: 20px; margin-bottom: 20px; color: var(--text-muted); }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-area {
    text-align: center;
    background: #2b2b2b;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.button {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 10px;
    transition: transform 0.2s, background 0.2s;
}
.button:hover {
    background: var(--bg-body);
    transform: translateY(-2px);
}

/* Footer */
footer {
    text-align: center;
    background-color: var(--bg-content);
    color: #555;
    font-size: 0.9rem;
    border-top: 1px solid #222;
    margin-top: auto;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .card { padding: 25px; }
    .hero-content h1 { font-size: 2.2rem; }
}