.home-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    position: relative;
}

.home-theme {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.home {
    width: 100%;
    max-width: 720px;
    padding: 40px 20px;
    text-align: center;
}

.home__hero {
    margin-bottom: 32px;
}

.home__emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.home h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.home__prize {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text);
}

.home__valor {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 6px;
}

.home__date {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.home__intro {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.home__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.home-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}

.home-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.home-card--buyer::before {
    background: linear-gradient(90deg, #16a34a, #22c55e);
}

.home-card--admin::before {
    background: linear-gradient(90deg, #2563eb, #6366f1);
}

.home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    border-color: var(--accent);
}

.home-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.home-card h2 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.home-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 16px;
}

.home-card__badge {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 99px;
    margin-bottom: 12px;
}

.home-card__badge--free {
    background: #dcfce7;
    color: #166534;
}

.home-card__badge--auth {
    background: #dbeafe;
    color: #1e40af;
}

[data-theme="dark"] .home-card__badge--free {
    background: #14532d55;
    color: #86efac;
}

[data-theme="dark"] .home-card__badge--auth {
    background: #1e3a8a55;
    color: #93c5fd;
}

.home-card__action {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
}

.home-card--buyer:hover .home-card__action {
    color: #16a34a;
}

.home-card--admin:hover .home-card__action {
    color: #2563eb;
}

.home__footer {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.home__footer a {
    color: inherit;
    text-decoration: none;
}

.home__footer a:hover {
    color: var(--accent);
    text-decoration: underline;
}

@media (max-width: 560px) {
    .home__cards {
        grid-template-columns: 1fr;
    }

    .home h1 {
        font-size: 1.625rem;
    }
}
