/* Horrible Maker — minimal override-safe styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800;900&display=swap');

/* Card shape */
.card-preview-inner {
    aspect-ratio: 2.5/3.5;
    width: 280px;
}

.card-white .card-content {
    background: #ffffff !important;
    color: #000000 !important;
}

.card-black .card-content {
    background: #000000 !important;
    color: #ffffff !important;
}

.card-content {
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    font-family: 'Outfit', sans-serif;
}

.card-text {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.card-footer {
    border-top: 1px solid currentColor;
    padding-top: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-footer-logo-text {
    font-size: 11px;
    font-weight: 800;
    opacity: 0.7;
}

#card-preview,
#deck-manager {
    font-family: 'Outfit', sans-serif;
}