* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background: #313338;
    color: #dbdee1;
    font-family: 'gg sans', 'Noto Sans', sans-serif;
    line-height: 1.4;
}

.top-warning {
    background: #f23f42;
    color: white;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 0;
    letter-spacing: 1px;
}

.wrapper { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

.hero-section {
    text-align: center;
    padding: 60px 0;
    background: #2b2d31;
    border-bottom: 1px solid #1e1f22;
}

.main-title { font-size: 3.5rem; font-weight: 800; letter-spacing: -2px; color: #fff; }
#strike-text { color: #f23f42; text-decoration: line-through; }
#strike-text::after { content: '|'; color: #5865f2; animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: 0; } }

.tagline { color: #b5bac1; font-weight: 600; margin-top: 5px; }

.counter-box {
    margin-top: 20px;
    font-family: monospace;
    font-size: 12px;
    color: #949ba4;
}
#days { color: #f23f42; font-size: 20px; font-weight: bold; }

.hero-desc { font-weight: 400; color: #dbdee1; max-width: 600px; margin: 25px auto 0; font-size: 1.1rem; }

.chat-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 0;
}

.chat-section {
    background: #2b2d31;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.chat-header {
    padding: 10px 16px;
    font-weight: bold;
    font-size: 14px;
    border-bottom: 1px solid #1e1f22;
}
.chat-header.bad { color: #f23f42; background: rgba(242, 63, 66, 0.05); }
.chat-header.good { color: #23a55a; background: rgba(35, 165, 90, 0.05); }

.chat-window { padding: 16px 0; }

.msg {
    display: flex;
    padding: 2px 16px;
    margin: 15px 0;
    gap: 16px;
}
.msg:hover { background: #2e3035; }

.pfp { width: 40px; height: 40px; border-radius: 50%; background: #1e1f22; }

.msg-meta { margin-bottom: 2px; }
.user { font-weight: 500; color: #f2f3f5; cursor: pointer; }
.user:hover { text-decoration: underline; }
.user.red { color: #f23f42; }
.user.blue { color: #00a8fc; }
.time { font-size: 12px; color: #949ba4; margin-left: 8px; }

.text { font-size: 15px; color: #dbdee1; }
.highlight-red { color: #fa777a; background: rgba(242, 63, 66, 0.1); padding: 0 4px; border-radius: 3px; font-family: monospace; }

.typing { font-size: 12px; color: #dbdee1; padding: 0 16px; font-style: italic; opacity: 0; transition: 0.3s; }

footer {
    background: #232428;
    padding: 30px 0;
    border-top: 1px solid #1e1f22;
    margin-top: 50px;
}

.footer-flex { display: flex; justify-content: space-between; font-size: 13px; color: #949ba4; }
footer a { color: #00a8fc; text-decoration: none; }
footer a:hover { text-decoration: underline; }

.btn-copy {
    background: #4e5058;
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 500;
}
.btn-copy:hover { background: #6d6f78; }

.text-green { color: #23a55a; font-weight: bold; }
.f-right { text-align: right; }
.f-right span { color: #00a8fc; }
