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

:root {
    --bg: #0a0a0a;
    --text: #e0e0e0;
    --accent: #f97316;
    --muted: #666;
    --card-bg: #111;
    --border: #222;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

/* Notice Banner */
.notice-banner {
    background: var(--accent);
    color: var(--bg);
    padding: 0.75rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.notice-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notice-text {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
}

.notice-link {
    color: var(--bg);
    font-weight: 700;
    margin-left: 0.5rem;
}

.notice-link:hover {
    opacity: 0.8;
}

.notice-close {
    background: none;
    border: none;
    color: var(--bg);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0 0 1rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.notice-close:hover {
    opacity: 1;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    padding: 4rem 0 3rem;
}

.logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.tagline {
    color: var(--muted);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero {
    text-align: center;
    padding: 3rem 0 4rem;
    border-bottom: 1px solid var(--border);
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.primary-brand {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--accent);
    color: var(--bg);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.primary-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.2);
}

.faq {
    padding: 4rem 0;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--accent);
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: #333;
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.faq-answer {
    color: var(--muted);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--accent);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.contact {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    margin: 4rem 0;
    border: 1px solid var(--border);
}

.contact h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact p {
    color: var(--muted);
    margin-bottom: 2rem;
}

.contact-email {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    border: 2px solid var(--accent);
    transition: all 0.3s;
}

.contact-email:hover {
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.2);
}

footer {
    text-align: center;
    padding: 3rem 0 2rem;
    color: var(--muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
    margin-top: 4rem;
    line-height: 1.8;
}

footer a {
    color: var(--muted);
    text-decoration: none;
}

/* Notice Page Styles */
.notice-header {
    background: var(--accent);
    color: var(--bg);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.notice-header.alert {
    background: #dc2626;
}

.notice-header.success {
    background: #16a34a;
}

.notice-type {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.notice-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.notice-date {
    opacity: 0.9;
    font-size: 0.95rem;
}

.notice-body {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.notice-body h2 {
    color: var(--accent);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.notice-body h2:first-child {
    margin-top: 0;
}

.notice-body p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.notice-body ul {
    color: var(--muted);
    margin-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.notice-body strong {
    color: var(--text);
}

.notice-body em {
    font-style: italic;
    color: var(--text);
}

.back-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: opacity 0.2s;
}

.back-link:hover {
    opacity: 0.8;
}

.contact-email {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--accent);
    margin: 1.5rem 0;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Media Queries */
@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }

    .notice-content {
        flex-direction: column;
        text-align: center;
    }

    .notice-close {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }
}


