.smash-voucher-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
}

.smash-voucher-card {
    background: #fff;
    border: 2px solid #D8931D;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.smash-voucher-header {
    text-align: center;
    margin-bottom: 30px;
}

.smash-voucher-logo {
    font-size: 48px;
    margin-bottom: 15px;
}

.smash-voucher-header h1 {
    color: #0C0A08;
    font-size: 28px;
    margin: 0;
    font-weight: bold;
}

.smash-voucher-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #0C0A08;
    font-weight: 600;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #D8931D;
    box-shadow: 0 0 0 3px rgba(216, 147, 29, 0.1);
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #D8931D;
    color: #fff;
}

.btn-primary:hover {
    background-color: #c07d0f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(216, 147, 29, 0.3);
}

.btn-success {
    background-color: #27ae60;
    color: #fff;
}

.btn-success:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

.voucher-result {
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
}

.voucher-result.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.voucher-result.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.result-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.result-message {
    font-size: 16px;
    margin: 0;
}

.burn-section {
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

@media (max-width: 600px) {
    .smash-voucher-card {
        padding: 20px;
    }
    
    .smash-voucher-header h1 {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}
