.giveaway-page {
    width: 100%;
}

.giveaway-shell {
    max-width: 1120px;
    margin: 0 auto;
    padding: 32px 16px 48px;
}

.giveaway-header {
    margin-bottom: 24px;
}

.giveaway-eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--frontend-accent, #2f80ed);
}

.giveaway-header h1 {
    margin: 8px 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.giveaway-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 20px;
}

.giveaway-panel {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(10, 16, 24, 0.72);
    padding: 20px;
}

.giveaway-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.giveaway-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 16px;
}

.giveaway-stats div {
    min-width: 0;
}

.giveaway-stats dt {
    font-size: 0.78rem;
    opacity: 0.72;
}

.giveaway-stats dd {
    margin: 4px 0 0;
    font-size: 1.35rem;
    font-weight: 700;
}

.giveaway-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.giveaway-quantity {
    width: 88px;
    min-height: 40px;
}

.giveaway-claim-response {
    margin-top: 14px;
}

.giveaway-claim-response__label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
}

.giveaway-claim-response__input {
    width: 100%;
    min-height: 112px;
    resize: vertical;
}

.giveaway-claim-response__help {
    margin: 6px 0 0;
    font-size: 0.85rem;
    opacity: 0.72;
}

.giveaway-claim-status {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(78, 190, 255, 0.35);
    border-radius: 8px;
    background: rgba(78, 190, 255, 0.1);
}

.giveaway-claim-status[hidden] {
    display: none;
}

.giveaway-claim-status span {
    font-size: 0.92rem;
    opacity: 0.82;
}

.giveaway-claim-prize {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    padding: 14px;
    border: 1px solid rgba(46, 204, 113, 0.35);
    border-radius: 8px;
    background: rgba(46, 204, 113, 0.1);
}

.giveaway-claim-prize[hidden] {
    display: none;
}

.giveaway-claim-prize__label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.74;
}

.giveaway-claim-prize p,
.giveaway-claim-prize pre {
    margin: 0;
}

.giveaway-claim-prize pre {
    white-space: pre-wrap;
    font: inherit;
}

.giveaway-feedback,
.giveaway-disclaimer {
    margin-top: 12px;
    font-size: 0.9rem;
    opacity: 0.78;
}

@media (max-width: 760px) {
    .giveaway-grid,
    .giveaway-stats {
        grid-template-columns: 1fr;
    }
}
