:root {
    --bg-color: #0b0c10;
    --accent-color: #e65c00;
    --accent-light: #ff8c00;
    --text-color: #f1f1f1;
    --muted-color: #9999a1;
    --card-bg: #15161e;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background-image: 
        radial-gradient(circle at 50% 20%, rgba(230, 92, 0, 0.12) 0%, transparent 50%);
}

.container {
    max-width: 680px;
    text-align: center;
}

.badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    border: 1px solid rgba(230, 92, 0, 0.4);
    background-color: rgba(230, 92, 0, 0.05);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

h1 {
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.highlight {
    background: linear-gradient(45deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

p.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

.humor-box {
    background-color: var(--card-bg);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.humor-box p {
    font-size: 0.98rem;
    color: var(--muted-color);
    line-height: 1.6;
}

.humor-box strong {
    color: var(--text-color);
}

.qr-section {
    background-color: var(--card-bg);
    border: 1px solid #22232c;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    display: inline-block;
}

.qr-code {
    width: 140px;
    height: 140px;
    background-color: #ffffff;
    padding: 8px;
    border-radius: 8px;
    margin: 0 auto 0.8rem auto;
    display: block;
}

.qr-label {
    font-size: 0.9rem;
    color: var(--muted-color);
    font-weight: 500;
}

.qr-label strong {
    color: var(--accent-color);
}

.domain-tag {
    font-family: "Courier New", Courier, monospace;
    font-size: 1rem;
    font-weight: bold;
    color: var(--accent-color);
    border-top: 1px solid #22232c;
    padding-top: 1.5rem;
    display: inline-block;
    width: 100%;
    letter-spacing: 1px;
}

.mic-icon {
    width: 24px;
    height: 40px;
    border: 3px solid var(--accent-color);
    border-radius: 12px;
    margin: 0 auto 2rem auto;
    position: relative;
}

.mic-icon::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background-color: var(--accent-color);
}

.mic-icon::before {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}