/* Vote & Bump — GayFurryTeam 2026 */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #0c0c14;
    color: #e0e0ec;
    min-height: 100vh;
    line-height: 1.5;
}

/* Header */
header {
    text-align: center;
    padding: 40px 16px 28px;
}

header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #5865f2, #1bd96a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

header p {
    color: #8888a8;
    font-size: 0.95rem;
}

header small {
    display: inline-block;
    margin-top: 10px;
    color: #55556e;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main 3-column layout */
main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px 40px;
    align-items: start;
}

/* Column card */
.column {
    background: rgba(18, 18, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 22px;
}

.column h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hint {
    font-size: 0.78rem;
    color: #6b6b88;
    margin: -8px 0 12px;
}

/* Links list */
ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #c8c8e0;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* Tag badge */
.tag {
    font-size: 0.68rem;
    background: rgba(27, 217, 106, 0.12);
    color: #1bd96a;
    padding: 2px 7px;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 16px 32px;
    color: #44445a;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    max-width: 1100px;
    margin: 0 auto;
}

/* Mobile: stack columns */
@media (max-width: 768px) {
    main {
        grid-template-columns: 1fr;
    }

    header h1 {
        font-size: 1.5rem;
    }
}