* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(180deg, #3d2914 0%, #5c3a1e 40%, #8b5a2b 80%, #a67340 100%);
    color: #fef3c7;
    min-height: 100vh;
    padding: 40px 20px;
    overflow-x: hidden;
    position: relative;
}
.potato-rain {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.spud {
    position: absolute;
    top: -40px;
    animation: fall linear infinite;
    opacity: 0.7;
}
@keyframes fall {
    from { transform: translateY(-10vh) rotate(0deg); }
    to   { transform: translateY(110vh) rotate(360deg); }
}
.container {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(40, 20, 10, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    border: 2px solid rgba(251,191,36,0.3);
    position: relative;
    z-index: 1;
}
h1 {
    color: #fbbf24;
    margin-top: 0;
    font-size: 38px;
    text-align: center;
    text-shadow: 0 2px 12px rgba(251,191,36,0.4);
}
h2 {
    color: #facc15;
    margin-top: 32px;
    border-bottom: 2px dashed rgba(251,191,36,0.3);
    padding-bottom: 8px;
}
.lead {
    font-size: 18px;
    color: #fef3c7;
    text-align: center;
    font-style: italic;
}
.rank-badge {
    background: linear-gradient(135deg, rgba(251,191,36,0.15), rgba(217,119,6,0.15));
    border: 2px solid #fbbf24;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    text-align: center;
}
.rank-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fcd34d;
}
.rank-title {
    font-size: 28px;
    font-weight: 700;
    color: #fbbf24;
    margin: 8px 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.rank-desc {
    color: #fef3c7;
    font-style: italic;
    font-size: 14px;
}
.info {
    background: rgba(139,90,43,0.3);
    border-left: 4px solid #fbbf24;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 24px 0;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.9;
}
.joke-box, .fact-box {
    background: rgba(217,119,6,0.15);
    border-radius: 12px;
    padding: 18px 22px;
    margin: 20px 0;
    border: 1px solid rgba(251,191,36,0.3);
}
.joke-label, .fact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fcd34d;
    margin-bottom: 8px;
}
.joke-setup {
    font-weight: 600;
    color: #fef3c7;
    margin-bottom: 6px;
}
.joke-punch {
    color: #fbbf24;
    font-style: italic;
    padding-left: 12px;
    border-left: 3px solid #fbbf24;
}
.fact-text {
    color: #fef3c7;
    line-height: 1.6;
}
code {
    background: rgba(251,191,36,0.2);
    color: #fbbf24;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
}
a {
    color: #fbbf24;
    text-decoration: none;
    border-bottom: 1px dotted #fbbf24;
}
a:hover {
    color: #fef3c7;
    border-bottom-style: solid;
}
ul { line-height: 1.9; }
.footnote {
    color: #d6a961;
    font-size: 13px;
    margin-top: 32px;
    font-style: italic;
    text-align: center;
}
