.btn {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    margin: 0.4rem;
    font-size: 0.95rem;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s ease-in-out, color 0.2s;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    border: none;
    width: 230px;
    text-align: center;
}

.btn-primary {
    background: #a0002c;
    color: white;
}

.btn-primary:hover {
    background: #000;
    color: white;
}

.btn-secondary {
    background: #717171;
    color: #111;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.footer {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    padding: 2rem 0 1rem;
    background: #f7f7f7;
}

.powered-by {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #444;
}

.powered-by img {
    height: 22px;
    vertical-align: middle;
    margin-left: 0.4rem;
}

.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
}

.logo {
    height: 24px;
}

.nav-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}
