body { 
    background-color: #1A1A2E;
    color: #ffffff;
}

.card-bg {
    background-color: #232342;
}

.btn-primary {
    background-color: #FFD700;
    color: #1A1A2E;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #FFC700;
    transform: translateY(-1px);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background-color: transparent;
    color: #FFD700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: 2px solid #FFD700;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #FFD700;
    color: #1A1A2E;
}

.gift-description {
    min-height: 80px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #B8B8D0;
}

.spinner {
    animation: spin 1s linear infinite;
    display: none;
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
    border: 0.2em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.spinner:not(.hidden) {
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.input-field {
    background-color: #2A2A4A;
    border: 1px solid #3D3D6B;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.input-field:focus {
    border-color: #FFD700;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.input-field::placeholder {
    color: #8888AA;
}

.vip-welcome {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid #FFD700;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.vip-welcome h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.vip-welcome p {
    color: #FFD700;
    font-size: 1.1rem;
    font-style: italic;
}
