/* Patch Notes Page Styling */
:root {
    --bg-primary: #0d0d0d;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255,255,255,0.7);
    --text-muted: rgba(255,255,255,0.5);
    --accent-blue: #4a9eff;
    --accent-yellow: #fbbf24;
    --border-color: rgba(255,255,255,0.15);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: #0a0a0a;
    background-image: url('/banner-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
}
body::before { content: ''; position: fixed; inset: 0; background: inherit; background-attachment: fixed; filter: blur(8px); z-index: -2; }
body::after { content: ''; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: -1; }
a { color: var(--accent-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; justify-content: center; align-items: center; gap: 40px; padding: 14px 24px; background-image: url('/banner-background.png'); background-size: cover; background-position: center; }
.site-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,35,50,0.9) 0%, rgba(40,50,60,0.7) 40%, rgba(120,40,40,0.8) 80%, rgba(140,30,30,0.9) 100%); pointer-events: none; }
.site-header > * { position: relative; z-index: 1; }
.site-title { font-family: 'Chakra Petch', sans-serif; font-size: 1.4rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-title img { width: 32px; height: 32px; }
.header-nav { display: flex; gap: 24px; }
.header-nav a { font-family: 'Chakra Petch', sans-serif; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.85); text-decoration: none; text-transform: uppercase; letter-spacing: 2px; }
.header-nav a:hover { color: #fff; }
.search-container { position: relative; max-width: 300px; }
.search-box { display: flex; align-items: center; background: #3c3c3c; border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; padding: 6px 12px; }
.search-icon { width: 16px; height: 16px; color: rgba(255,255,255,0.6); }
.search-input { flex: 1; background: none; border: none; outline: none; color: #fff; font-size: 0.85rem; padding: 0.25rem 0.5rem; }
.search-input::placeholder { color: rgba(255,255,255,0.5); }
.search-shortcut { font-size: 0.65rem; color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); padding: 2px 6px; border-radius: 3px; font-family: monospace; }
.search-results { position: absolute; top: calc(100% + 12px); left: -8px; right: -8px; background-color: #1a1a1a; background-image: url('/wavy background.png'); background-size: 400px auto; border: 1px solid rgba(255,255,255,0.2); max-height: 400px; overflow-y: auto; display: none; z-index: 1001; }
.search-results.active { display: block; }
.breadcrumb-nav { padding-top: 80px; }
.breadcrumb-container { max-width: 900px; margin: 0 auto; padding: 16px 40px; }
.breadcrumb-list { display: flex; gap: 8px; list-style: none; font-size: 0.85rem; }
.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item::after { content: '›'; margin-left: 8px; color: var(--text-muted); }
.breadcrumb-item:last-child::after { display: none; }
.site-main { max-width: 900px; margin: 0 auto; padding: 24px 40px 60px; }
.page-title-section { position: relative; margin-bottom: 32px; padding: 12px; }
.page-title-inner { background-image: url('/banner-background.png'); background-size: cover; background-position: center; border: 1px solid #333; padding: 32px; position: relative; text-align: center; }
.page-title-inner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,35,50,0.9) 0%, rgba(40,50,60,0.7) 40%, rgba(120,40,40,0.8) 80%, rgba(140,30,30,0.9) 100%); }
.version-badge { display: inline-block; background: linear-gradient(135deg, var(--accent-yellow) 0%, #f59e0b 100%); color: #000; padding: 6px 20px; font-family: 'Chakra Petch', sans-serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 12px; position: relative; z-index: 1; }
.page-title { font-family: 'Chakra Petch', sans-serif; font-size: 1.8rem; font-weight: 700; color: #fff; letter-spacing: 2px; position: relative; z-index: 1; margin-bottom: 8px; }
.page-date { font-size: 0.9rem; color: rgba(255,255,255,0.6); position: relative; z-index: 1; }
.corner-tl, .corner-tr, .corner-bl, .corner-br { position: absolute; width: 16px; height: 16px; border-style: solid; border-width: 0; border-color: rgba(255,255,255,0.5); }
.corner-tl { top: -4px; left: -4px; border-top-width: 2px; border-left-width: 2px; }
.corner-tr { top: -4px; right: -4px; border-top-width: 2px; border-right-width: 2px; }
.corner-bl { bottom: -4px; left: -4px; border-bottom-width: 2px; border-left-width: 2px; }
.corner-br { bottom: -4px; right: -4px; border-bottom-width: 2px; border-right-width: 2px; }
.back-link { display: inline-block; color: var(--accent-yellow); font-size: 0.9rem; margin-bottom: 24px; text-decoration: none; }
.back-link:hover { text-decoration: underline; }
.update-section { position: relative; padding: 12px; margin-bottom: 20px; }
.update-section-inner { background-color: #1a1a1a; background-image: url('/wavy background.png'); background-size: 400px auto; background-repeat: repeat; border: 1px solid var(--border-color); padding: 24px; }
.update-section h2 { font-family: 'Chakra Petch', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--accent-yellow); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.update-section p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.update-section p:last-child { margin-bottom: 0; }
.update-section ul { list-style: none; padding: 0; margin: 0; }
.update-section li { color: var(--text-secondary); padding: 8px 0 8px 20px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); }
.update-section li:last-child { border-bottom: none; }
.update-section li::before { content: '•'; position: absolute; left: 0; color: var(--accent-yellow); }
.update-section strong { color: var(--text-primary); }
.note-box { background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.3); padding: 12px 16px; margin-top: 12px; color: var(--accent-yellow); font-size: 0.9rem; }
.race-epic { color: #a855f7; }
.race-legendary { color: #fbbf24; }
.race-relic { color: #06b6d4; }
.highlight-section { text-align: center; border-color: rgba(251,191,36,0.4) !important; }
.highlight-section p { font-size: 1.1rem; font-weight: 600; color: var(--accent-yellow); margin: 0; }
.site-footer { background: #0a0a0a; border-top: 1px solid var(--border-color); padding: 40px 0 30px; margin-top: 60px; }
.footer-content { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-section { display: flex; flex-direction: column; gap: 16px; }
.footer-section-title { font-family: 'Chakra Petch', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 2px; }
.footer-buttons { display: flex; gap: 8px; background: rgba(30,30,30,0.6); border: 1px solid var(--border-color); padding: 12px; position: relative; }
.footer-btn { display: inline-block; padding: 10px 16px; background-color: #2a2a2a; background-image: url('/wavy background.png'); background-size: 200px auto; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.8rem; }
.footer-btn:hover { background-color: #3a3a3a; color: #fff; text-decoration: none; }
.footer-bottom { max-width: 1200px; margin: 30px auto 0; padding: 20px 40px 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo img { width: 28px; height: 28px; }
.footer-logo span { font-family: 'Chakra Petch', sans-serif; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-copyright { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-align: center; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.bg-animation { display: none; }
@media (max-width: 900px) {
    .header-nav { display: none; }
    .site-main { padding: 24px 20px 60px; }
    .breadcrumb-container { padding: 16px 20px; }
    .page-title { font-size: 1.4rem; }
    .footer-content { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
